What does printf does?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between union and anonymous union?
Calculate 1*2*3*____*n using recursive function??
In which category does main function belong??
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is main function in c?
Can we increase size of array in c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
What the advantages of using Unions?
Can a variable be both static and volatile in c?
What are shell structures used for?
What is #include called?