What is the prototype of printf function?


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

Post New Answer

More C++ General Interview Questions

How does work in c++?

0 Answers  


write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)

0 Answers  


What is the precedence when there is a global variable and a local variable in the program with the same name?

0 Answers  


Write a program to calculate the BMI of a person using the formula BMI = weight/height2.

2 Answers  


Can you please explain the difference between static and dynamic binding of functions?

0 Answers  






Write a struct time where integer m, h, s are its members?

0 Answers  


What is the difference between a type-specific template friend class and a general template friend class?

0 Answers  


Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?

6 Answers   CSC,


Write a program to concatenate two strings.

0 Answers  


What new()is different from malloc()?

0 Answers  


How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?

0 Answers  


What is the default width for ouputting a long integer using the insertion operator?

0 Answers  


Categories