#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
What is page thrashing?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is a pointer in c?
What is equivalent to ++i+++j?
Why static is used in c?
Is c still relevant?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is structure of c program?
What are the types of variables in c?
Tell us two differences between new () and malloc ()?
why return type of main is not necessary in linux
How do I send escape sequences to control a terminal or other device?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is a pointer variable in c language?
What are the different properties of variable number of arguments?