What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / chandrakala
error: i doesn't declared in a correct way
int i=1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is graph in c?
What is declaration and definition in c?
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
What is spark map function?
Tell me can the size of an array be declared at runtime?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
When should a far pointer be used?
What is #pragma statements?
How can I get back to the interactive keyboard if stdin is redirected?
What is the use of #define preprocessor in c?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
How can I do serial ("comm") port I/O?