What does printf does?


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

Post New Answer

More C Interview Questions

Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }

4 Answers  


What is difference between static and global variable in c?

0 Answers  


How do I send escape sequences to control a terminal or other device?

0 Answers  


Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)

6 Answers   Subex,


Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?

3 Answers  






How can we open a file in Binary mode and Text mode?what is the difference?

1 Answers   PanTerra,


write a C program to print the program itself ?!

16 Answers   TCS,


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


What is structure padding in c?

0 Answers  


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

0 Answers   Wipro,


while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?

4 Answers   Aptech,


Categories