#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / sravani
i got the answer 1,3,4
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Write a program on swapping (100, 50)
What is %d used for?
What is a #include preprocessor?
while initialization of array why we use a[][2] why not a[2][]...?
Why c language?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Define C in your own Language.
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is extern keyword in c?
How can variables be characterized?
What is the use of header?
What is the difference between text and binary modes?
What is difference between array and pointer in c?