What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / guest
error exist due to nat declaring datatype for i
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How can I open files mentioned on the command line, and parse option flags?
What is local and global variable in c?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What are file streams?
How can I avoid the abort, retry, fail messages?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
How do you initialize pointer variables?
What are identifiers c?
There seem to be a few missing operators ..
What is exit() function?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What math functions are available for integers? For floating point?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
How to draw the flowchart for structure programs?