write a program that will print %d in the output screen??
Answer Posted / mizanur
int main()
{
printf("%%d");
return 0;
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is file in c preprocessor?
Which node is more powerful and can handle local information processing or graphics processing?
What is the difference between null pointer and wild pointer?
Why is %d used in c?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is the purpose of void in c?
How can I delete a file?
What is an operator?
how logic is used
What is memory leak in c?
How can I swap two values without using a temporary?
Why main is used in c?
Why is struct padding needed?
What's the difference between constant char *p and char * constant p?