What is the output of printf("%d")?

Answers were Sorted based on User's Feedback



What is the output of printf("%d")?..

Answer / nagaraj

This will give garbage value.

Is This Answer Correct ?    0 Yes 0 No

What is the output of printf("%d")?..

Answer / vijay

it will print the recently assigned integer value.....

Is This Answer Correct ?    1 Yes 2 No

What is the output of printf("%d")?..

Answer / hardik jasani

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

Output:0

Is This Answer Correct ?    0 Yes 1 No

What is the output of printf("%d")?..

Answer / sathya

it is the integer in decimal form..
#include<stdio.h>
main()
{
int sum;
sum=6+3;
printf("%d\n",sum);
}

Is This Answer Correct ?    2 Yes 4 No

What is the output of printf("%d")?..

Answer / creed

When insufficent argumrnts r give 2 c compiler it give
arbitrary answers
in turbo c it gives o/p =0
in other compiler it trys 2 read values from last stack top
i.e garbage
some compiler can may even crash

Is This Answer Correct ?    3 Yes 7 No

What is the output of printf("%d")?..

Answer / shruthi

the o/p is 0.

Is This Answer Correct ?    7 Yes 11 No

What is the output of printf("%d")?..

Answer / uma sankar pradhan

int a=30;
printf("%d");

the output is 30

Is This Answer Correct ?    33 Yes 38 No

What is the output of printf("%d")?..

Answer / reegan

printf"%d");
it just prints '0'

Is This Answer Correct ?    12 Yes 21 No

What is the output of printf("%d")?..

Answer / mousam sahu

it will give the statement missing error
bcoz printf must have the statment ilke ;

Is This Answer Correct ?    2 Yes 16 No

What is the output of printf("%d")?..

Answer / mousam sahu

it will give an expression syntax error as printf must have
an expression like ;

Is This Answer Correct ?    5 Yes 22 No

Post New Answer

More C++ General Interview Questions

write a C++ programming using for loop: * * * * * * * * * *

4 Answers   TCS,


Do vectors start at 0?

0 Answers  


Does c++ support multilevel and multiple inheritances?

0 Answers  


Why we use #include iostream in c++?

0 Answers  


Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)

0 Answers  






Can we run c program in turbo c++?

0 Answers  


Define a constructor?

0 Answers  


What is meaning of in c++?

0 Answers  


When does the c++ compiler create temporary variables?

0 Answers  


What is a static member?

0 Answers  


What is a virtual destructor?

2 Answers  


Find out the bug in this code,because of that this code will not compile....... #include <iostream> #include <new> #include <cstring> using namespace std; class balance { double cur_bal; char name[80]; public: balance(double n, char *s) { cur_bal = n; strcpy(name, s); } ~balance() { cout << "Destructing "; cout << name << "\n"; } void set(double n, char *s) { cur_bal = n; strcpy(name, s); } void get_bal(double &n, char *s) { n = cur_bal; strcpy(s, name); } }; int main() { balance *p; char s[80]; double n; int i; try { p = new balance [3]; // allocate entire array } catch (bad_alloc xa) { cout << "Allocation Failure\n"; return 1; }

2 Answers   Impetus,


Categories