How to print %d in output

Answers were Sorted based on User's Feedback



How to print %d in output..

Answer / ramu gurram

printf("%%d");

Is This Answer Correct ?    38 Yes 5 No

How to print %d in output..

Answer / nitin garg

printf("%%d");

Is This Answer Correct ?    0 Yes 0 No

How to print %d in output..

Answer / murugesan kr

printf("\%d");

Is This Answer Correct ?    1 Yes 7 No

How to print %d in output..

Answer / chirag garg

printf("% \bd");

Is This Answer Correct ?    2 Yes 12 No

How to print %d in output..

Answer / yogesh rasal

printf("/%d")

Is This Answer Correct ?    1 Yes 16 No

How to print %d in output..

Answer / reddy

printf("%d");

Is This Answer Correct ?    11 Yes 30 No

Post New Answer

More C Interview Questions

how to print 212 as Twohundreds twelve plz provide me ans soon

1 Answers  


Why can arithmetic operations not be performed on void pointers?

0 Answers  


write an algorithm and c program to add two 2x2 matrics

2 Answers  


how to print "hai" in c?

13 Answers   TCS,


what is the difference between %d and %*d in c languaga?

7 Answers   TCS,






#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

0 Answers   Wilco,


What is the easiest sorting method to use?

0 Answers  


What does %f mean c?

1 Answers  


What is preprocessor with example?

0 Answers  


What is the difference between variable declaration and variable definition in c?

0 Answers  


Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?

2 Answers   TCS,


please send me the code for multiplying sparse matrix using c

0 Answers  


Categories