What is NULL pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Method Overloading exist in c ?
what is inline function?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
write the program to find multiplication of 2-D matrix??????????
who is the editor of 'pokemon'?
what is the use of call back function in c?tell me with example
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
Why c is called free form language?
What is a structure in c language. how to initialise a structure in c?