What does volatile do?
No Answer is Posted For this Question
Be the First to Post Answer
What is a dynamic array in c?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Why main is used in c?
How can you increase the size of a statically allocated array?
What is difference between structure and union in c?
Explain what is the concatenation operator?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
What is Function Pointer? Explain with example?