What is wild pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
how many key words availabel in c a) 28 b) 31 c) 32
What is a structural principle?
What is the easiest sorting method to use?
Where are some collections of useful code fragments and examples?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
Why doesnt the call scanf work?
How can I sort a linked list?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Why do we use return in c?
What is the use of #define preprocessor in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }