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 |
Write a program to check palindrome number in c programming?
Which weighs more, a gram of feathers or a gram of gold?
what are the stages of compilation
What are the preprocessors?
In which layer of the network datastructure format change is done
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
How do you write a program which produces its own source code as its output?
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
write a program to print infinte number
In which header file is the null macro defined?
What is the use of ?: Operator?