what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}

Answer Posted / girish

1,1,3

Is This Answer Correct ?    3 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is extern used in c?

614


What are data types in c language?

590


What are integer variable, floating-point variable and character variable?

611


What extern c means?

547


what is recursion in C

618






Write a C program to count the number of email on text

1422


What does return 1 means in c?

590


Can true be a variable name in c?

561


What does node * mean?

716


What is c++ used for today?

672


what is the role you expect in software industry?

1660


How can I invoke another program or command and trap its output?

621


what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

1457


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

1850


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

1908