main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / divyansh
output will be 1o 16
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
By using C language input a date into it and if it is right?
What is the symbol indicated the c-preprocessor?
What is bubble sort in c?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What is signed and unsigned?
What is a volatile keyword in c?
Can you define which header file to include at compile time?
What are the applications of c language?
How to set file pointer to beginning c?
Is r written in c?
What is the concatenation operator?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is time complexity c?
What does typedef struct mean?
Write the control statements in C language