What is %s and %d in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Can a program have two main functions?

0 Answers  


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?

14 Answers   Verifone,


Why is C language being considered a middle level language?

0 Answers  


what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 Answers  






What is %d called in c?

0 Answers  


Why does this code crash?

0 Answers  


What is a spanning Tree?

1 Answers   TCS,


What is the difference between text and binary i/o?

0 Answers  


main() { int i=5; printf("%d%d%d%d",i++,i--,i); }

10 Answers  


what is the output of below int n=10; (n++)++; printf("%d",n);

3 Answers  


How can I read in an object file and jump to locations in it?

0 Answers  


Categories