What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / siva
1 1 2
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is the maximum no. of arguments that can be given in a command line in C.?
Explain is it valid to address one element beyond the end of an array?
Define the scope of static variables.
What is the use of typedef in c?
What are local static variables? How can you use them?
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 are 3 types of structures?
What does the && operator do in a program code?
how do you execute a c program in unix.
What type is sizeof?
Explain what is gets() function?
What is structure in c language?
Between macros and functions,which is better to use and why?
Give me the code of in-order recursive and non-recursive.
code for find determinent of amatrix