Thursday 2 July 2020

CPP Program to find out the output of i and i++ with input zero

Source Code : 

#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
int i = 0;
cout<<i<<" , "<<i++;
return 0;
}

Program Output : 


No comments:

Post a Comment