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

What is the sizeof () a pointer?

0 Answers  


write a program to swap Two numbers without using temp variable.

75 Answers   EMC, Focus, GreyB, HCL, Hitech, HP, Huawei, Infosys, Mannar Company, Microsoft, Miles Software, Odessa Technologies, Satyam, TCS, Wipro,


What does d mean?

0 Answers  


What is difference between scanf and gets?

0 Answers  


What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these

3 Answers   IBM,






Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)

5 Answers   IBM, KJH,


what is differnence b/w macro & functions

1 Answers  


What is meaning of "Void main" in C Language.

24 Answers   Ford, GU, HCL, IBIBS, JUW, TCS,


Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments

6 Answers   TCS,


what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }

14 Answers  


What are inbuilt functions in c?

0 Answers  


What is linear search?

0 Answers  


Categories