What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / pooja keshri
321
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can I remove the leading spaces from a string?
Can a pointer be null?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Without Computer networks, Computers will be half the use. Comment.
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Explain the difference between ++u and u++?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
write a program to generate address labels using structures?
How can I read a binary data file properly?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Is there any possibility to create customized header file with c programming language?
Explain which function in c can be used to append a string to another string?
What is a pragma?
What is data type long in c?
How do you declare a variable that will hold string values?