What does the file stdio.h contain?


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

Post New Answer

More C Interview Questions

Define Spanning-Tree Protocol (STP)

0 Answers  


What does a function declared as pascal do differently?

0 Answers  


Explain the difference between ++u and u++?

0 Answers  


What is a ternary operator in c?

0 Answers  


Can you subtract pointers from each other? Why would you?

0 Answers  






Reverse a string word by word??

9 Answers  


void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..

1 Answers  


Find occurence of a character in a sting.

3 Answers   TCS,


What are valid operations on pointers?

0 Answers  


What is #define used for in c?

0 Answers  


what is the output of printf("%d",(scanf("%d",10));

10 Answers  


Explain what does it mean when a pointer is used in an if statement?

0 Answers  


Categories