write a program to print %d ?
Answers were Sorted based on User's Feedback
Answer / chinna
#include<stdio.h>
#include<conio.h>
void main()
{
printf("%d");
}
Is This Answer Correct ? | 15 Yes | 10 No |
Answer / satish
#include<stdio.h>
main(){
printf("%cd",37);// ASCII value of % = 37
}
Is This Answer Correct ? | 14 Yes | 9 No |
Answer / agalya
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\%d");
}
Is This Answer Correct ? | 13 Yes | 10 No |
Answer / manikanta
#include "stdio.h"
main()
{
printf(" %%d ");
}
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / hareram ray
#include<stdio.h>
int main(int argc,char *argv)
{
clrscr();
printf("%d");
return 0;
}
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / murali
#include<stdio.h>
#include<conio.h>
void main()
{
printf("%");
printf("d");
}
Is This Answer Correct ? | 9 Yes | 10 No |
What does the characters “r” and “w” mean when writing programs that will make use of files?
how to write a prog in c to convert decimal number into binary by using recursen function,
Which header file is essential for using strcmp function?
Write a program to find minimum between three no.s whithout using comparison operator.
How do I determine whether a character is numeric, alphabetic, and so on?
c program to manipulate x=1+3+5+...+n using recursion
Tell us the use of fflush() function in c language?
write a program to find lcm and hcf of two numbers??
Write a program in C to convert date displayed in gregorian to julian date
how to find the binary of a number?
What is abstract data structure in c?
with out using main how to execute the program?