What is printf () in c?


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

Post New Answer

More C Interview Questions

If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).

5 Answers   Microsoft, Motorola,


What is a far pointer in c?

0 Answers  


Can main () be called recursively?

0 Answers  


What are data structures in c and how to use them?

0 Answers  


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

0 Answers   Lovely Professional University,






What does the message "warning: macro replacement within a string literal" mean?

1 Answers  


Describe the difference between = and == symbols in c programming?

0 Answers  


What is difference between far and near pointers?

0 Answers  


program for validity of triangle from 3 side

7 Answers  


Is null always equal to 0(zero)?

0 Answers  


Is main is user defined function?

0 Answers  


Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program

5 Answers   Mascot,


Categories