What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / navya
1,1,2
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Write a program to print fibonacci series using recursion?
What is a constant and types of constants in c?
What is new line escape sequence?
Is array name a pointer?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is the advantage of c?
Why main is used in c?
What is assignment operator?
What is the purpose of 'register' keyword?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is structure padding and packing in c?
Explain what is the purpose of "extern" keyword in a function declaration?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
When should structures be passed by values or by references?
What is function prototype in c with example?