write a program to print %d ?

Answers were Sorted based on User's Feedback



write a program to print %d ? ..

Answer / naveenkumar s h

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

Is This Answer Correct ?    0 Yes 11 No

write a program to print %d ? ..

Answer / ketan

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

Is This Answer Correct ?    3 Yes 22 No

Post New Answer

More C Interview Questions

write a program to display reverse of a number using for loop?

14 Answers  


What is int main () in c?

0 Answers  


what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


What is strcmp in c?

0 Answers  


Write a program in c to replace any vowel in a string with z?

0 Answers   IBS,






What are volatile variables in c?

0 Answers  


What are the basic data types associated with c?

0 Answers  


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

21 Answers   ME,


11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage

7 Answers   Accenture,


Is reference used in C?

1 Answers  


‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.

0 Answers  


what is difference between overriding and overloading?

1 Answers  


Categories