Programming Tutorials

Comment on Tutorial - The if Statement in C++ By Priya



Comment Added by : nazarine

Comment Added at : 2011-07-06 06:17:10

Comment on Tutorial : The if Statement in C++ By Priya
# include <iostream.h>
int main ()
{
int x,y
cout<<"enter your year:\n";
cin>>x;
cout<<"enter your year:\n";
cin>>y;
cout<<the sum of two no# is:\n";
return 0;
{


View Tutorial