#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / drashti
3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Do string constants represent numerical values?
while initialization of array why we use a[][2] why not a[2][]...?
When we use void main and int main?
What is character constants?
Explain the properties of union.
What are the functions to open and close file in c language?
What is the g value paradox?
Explain the difference between #include "..." And #include <...> In c?
Explain which function in c can be used to append a string to another string?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Tell us something about keyword 'auto'.
What is break in c?
What is static volatile in c?
Is there a built-in function in C that can be used for sorting data?
What is dynamic memory allocation?