write a program that will print %d in the output screen??
Answers were Sorted based on User's Feedback
void main()
{
printf("%%d");
getch();
}
where %% will print % and d will be printed asual
thank u
| Is This Answer Correct ? | 39 Yes | 2 No |
Answer / mahendra vishwakarma
#include<stdio.h>
void main()
{
printf("%%d"); //this will print as %d output.
}
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / j j ramesh
# include <stdio.h>
void main()
{
puts("%d");
}
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / aditya singh
//wap to print %d on the screen//
#include<stdio.h>
main()
{
char a = '%';
char b = 'd';
printf("%c",a);
printf("%c",b);
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the difference between fopen() and freopen().
Define the scope of static variables.
write a program to display reverse of a number using for loop?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
what is difference between C and C++
What are runtime error?
What does main () mean in c?
What is typedf?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
how we can say java is platform independent, while we require JVM for that particular Operating System?
how to print 212 as Twohundreds twelve plz provide me ans soon
what will be maximum number of comparisons when number of elements are given?