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
Write a function that will take in a phone number and output all possible alphabetical combinations
Can static variables be declared in a header file?
difference between Low, Middle, High Level languages in c ?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is stack in c?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
How do you define a string?
What are header files and what are its uses in C programming?
When can a far pointer be used?
What is #line in c?
What is the difference between the expression “++a” and “a++”?
i want to know the procedure of qualcomm for getting a job through offcampus
What are the features of c languages?
What are void pointers in c?