What is wild pointer in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
Which is more efficient, a switch statement or an if else chain?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
What is the difference between array and pointer in c?
what are the advantages of a macro over a function?
What is a C array and illustrate the how is it different from a list.
Why is c so powerful?
do you think its fraud or original company?
Write a simple code fragment that will check if a number is positive or negative.
what is the use of #pragma pack, wer it is used?
What is a const pointer?
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>