write a program that will print %d in the output screen??
Answer Posted / j j ramesh
# include <stdio.h>
void main()
{
puts("%d");
}
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
What is the significance of scope resolution operator?
Is c procedural or functional?
How do I round numbers?
Why are algorithms important in c program?
Can we change the value of static variable in c?
Why do we need a structure?
When should a type cast be used?
What is c method?
What are nested functions in c?
What is the right way to use errno?
What is function definition in c?
What is the code for 3 questions and answer check in VisualBasic.Net?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Why is c not oop?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational