Questions


November 2023 2 4 Report
Find the output of the following program: #include<stdio.h>
#include<conio.h>
void main()
int x = 10, y = 10, v1, v2;
v1 = x++;
v2=++y;
printf ("value of v1:%d", v1);
printf ("value of v2:%d", v2);
getch();
}​

Answers & Comments


Add an Answer


Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Helpful Social

Copyright © 2024 EHUB.TIPS team's - All rights reserved.