write a program to print %d ?

Answers were Sorted based on User's Feedback



write a program to print %d ? ..

Answer / sumankumar

printf("%%d");

Is This Answer Correct ?    11 Yes 3 No

write a program to print %d ? ..

Answer / chinna

#include<stdio.h>
#include<conio.h>
void main()
{
printf("%d");
}

Is This Answer Correct ?    15 Yes 10 No

write a program to print %d ? ..

Answer / satish

#include<stdio.h>
main(){
printf("%cd",37);// ASCII value of % = 37
}

Is This Answer Correct ?    14 Yes 9 No

write a program to print %d ? ..

Answer / agalya

#include<stdio.h>
#include<conio.h>
void main()
{
printf("\%d");
}

Is This Answer Correct ?    13 Yes 10 No

write a program to print %d ? ..

Answer / manikanta

#include "stdio.h"

main()
{
printf(" %%d ");
}

Is This Answer Correct ?    4 Yes 1 No

write a program to print %d ? ..

Answer / hemanthkumar

prinf("%""d");

Is This Answer Correct ?    0 Yes 0 No

write a program to print %d ? ..

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

write a program to print %d ? ..

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 print %d ? ..

Answer / rashmi

# include <stdio.h>
main()
{
printf("%d");
}

Is This Answer Correct ?    0 Yes 3 No

write a program to print %d ? ..

Answer / rashmi

#include<stdio.h>
main()
{
printf("\%d");
}

Is This Answer Correct ?    5 Yes 9 No

Post New Answer

More C Interview Questions

Write a program to check palindrome number in c programming?

0 Answers  


Which weighs more, a gram of feathers or a gram of gold?

2 Answers  


what are the stages of compilation

1 Answers   Bosch,


What are the preprocessors?

9 Answers   HP,


In which layer of the network datastructure format change is done

0 Answers   Honeywell,






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

0 Answers  


How do you write a program which produces its own source code as its output?

2 Answers  


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 :(

1 Answers  


IS STRUCTURES CAN BE USED WITHIN AN ARRAY?

7 Answers   Caritor,


write a program to print infinte number

4 Answers  


In which header file is the null macro defined?

0 Answers  


What is the use of ?: Operator?

0 Answers  


Categories