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
Is c++ based on c?
Why we use int main and void main?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
What is file in c preprocessor?
Explain the priority queues?
Hi can anyone tell what is a start up code?
#include
How can you pass an array to a function by value?
Why is extern used in c?
Explain what are multidimensional arrays?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
write a program in c language to print your bio-data on the screen by using functions.
How do we make a global variable accessible across files? Explain the extern keyword?