Explain what are compound statements?
No Answer is Posted For this Question
Be the First to Post Answer
What would be an example of a structure analogous to structure c?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
what are far pointers?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
List the difference between a While & Do While loops?
Between macros and functions,which is better to use and why?
define c
why java is called as a purely oops language.
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
Diff between for loop and while loop?
what are the stoge class in C and tel the scope and life time of it?
#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?