C++ Programming and Technical Programming

what is i++? means

Read Solution (Total 10)

C++ Other Question

Give the output of following program segment with explanation.
main()
{int a=32, *x=&a;
char ch=65, &e=ch;
e+=a;
*x+=ch;
cout<
Flag question
Question text
What will be the output of the following program?
#include
using namespace std;
int g = 100;
int main()
{
int a;
{
int b;
b = 20;
a = 35;
g = 65;
a = 50;
cout <