If an old women's age is the same as her three grand
daughters i,mean the number of days old child=the no of
weeks old child=no of months old child .The total yrs of all
these ppl is 114 yrs...then how old is the old woman?
the yr has 365 days..and 30 days each month.
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
How is a null pointer different from a dangling pointer?
How to implement a packet in C
Why is it important to memset a variable, immediately after allocating memory to it ?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
void main() { int i=5; printf("%d",i++ + ++i); }
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
What is meant by type specifiers?
Is array name a pointer?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
What are the disadvantages of external storage class?
Why do some versions of toupper act strangely if given an upper-case letter?