any C program contains only one function, it must be
a) void ()
b) main ()
c) message ()
d) abc ()
What is structure and union in c?
why arithmetic operation can’t be performed on a void pointer?
Is there sort function in c?
write a program to display reverse of a number using for loop?
What is merge sort in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
int x=5; printf("%d%d%d",x,x<<2,x>>2);
Can one function call another?
Difference between constant pointer and pointer to a constant.
What is c programming structure?
What is meant by keywords in c?