Advertisements
Advertisements
प्रश्न
Write the output of the following c++ program.
#include<iostream>
#include<string>
using namespace std;
struct student
{
introll_no;
char name[10];
long phone_number;
};
int main()
{
student p1 = {1,"Brown",123443},p2;
p2.roll_no = 2;
strcpy(p2.name ,"Sam");
p2.phone_number = 1234567822;
cout<< "First Student" <<endl;
cout<< "roll no : " << p1.roll_no <<endl<< "name : " << p1.name <<endl;
cout<< "phone no : " << p1.phone_number <<endl; cout<< "Second Student" <<endl;
cout<< "roll no : " << p2.roll_no <<endl<< "name : " << p2.name <<endl;
cout<< "phone no : " << p2.phone_number <<endl; return 0;
|
उत्तर
Output
First student
roll no: 1
name: Brown
Phone no. : 123443
Second Student
roll no: 2
name: Sam
Phone no. : 1234567
Third Student
roll no : 3
name: Addy
Phone no. : 1234597844