Write a C plus plus program thats display your name and stream
#include<iostream>
using namespace std;
void main (){
cout<<"Name : Mrinal Banerjee"<<endl<<"stream: Computer Engineering"<<endl;
}
Output--
Name : Mrinal Banerjee
Stream: Computer Engineering
Post a Comment