I heard that you have to include stdio.h before calling printf. Why?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the difference between ‘g’ and “g” in C?

1 Answers  


enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program

1 Answers  


What are volatile variables?

1 Answers   Mind Tree,


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);

1 Answers  


how to multiply two number taking input as a string (considering sum and carry )

2 Answers   Wipro,






What is the use of a ‘’ character?

0 Answers  


Why c language is called c?

0 Answers  


How macro execution is faster than function ?

0 Answers   Wipro,


Is null equal to 0 in sql?

0 Answers  


Which is better malloc or calloc?

0 Answers  


how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y

2 Answers   TCS, Tech Synergy,


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


Categories