proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
7 10809#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
3 16359
What are the benefits of c language?
What is pointer in c?
What is const keyword in c?
What is the difference between procedural and functional programming?
what does static variable mean?
When should a type cast be used?
What is file in c preprocessor?
What is a #include preprocessor?
Explain what are header files and explain what are its uses in c programming?
How many header files are in c?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is a lookup table in c?
What is meant by recursion?
Why can't I perform arithmetic on a void* pointer?