p*=(++q)++*--p when p=q=1 while(q<=6)
No Answer is Posted For this Question
Be the First to Post Answer
what is the definition of storage classes?
What is difference between constant pointer and constant variable?
What is the use of a static variable in c?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
what is the significance of static storage class specifier?
How can I pad a string to a known length?
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
Whether there can be main inside another main?If so how does it work?
What is the use of gets and puts?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none