Why c is called procedure oriented language?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
how many times of error occur in C
What are the c keywords?
where are auto variables stored? What are the characteristics of an auto variable?
program for swapping two strings by using pointers in c language
What is structure in c language?
where do we use volatile keyword?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is indirection in c?
What is a macro, and explain how do you use it?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }