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 are unions in c?
what are bit fields? What is the use of bit fields in a structure declaration?
Write a program to swap two numbers without using third variable in c?
In which layer of the network datastructure format change is done
What is the right type to use for boolean values in c? Is there a standard type?
What is the easiest sorting method to use?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What is spaghetti programming?
What are the advantages of using macro in c language?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is void main ()?
Explain how can you determine the size of an allocated portion of memory?
What is call by reference in functions?
What are identifiers and keywords in c?