Educational Counselling, Spoken English, IELTS, PTE, Student Visa, English Tuition, English Class- 94298 28703
Thursday, January 25, 2018
RR CAREER CONCEPT - 9429828703
Suffolk University, Boston
is waiving the application fee of $50 for all the Graduate programs.
All the counselors are
requested to inform all your existing students about this universities. If the
student is interested in applying top universities with low profiles can apply
the above universities for conditional admit.
Master in UK
§ Without IELTS
§ No age Gape
§ Zero Bank Balance/Zero Cost
§ Study in UK and Settle in USA/Canada/Europe
§ Multiple intake 2/4 months
§ With Spouse
§ Education only at universities
RR CAREER CONCEPT - 9429828703
University of Alabama Birmingham
is waiving the Application fee of $30 for the below Graduate programs
Master of Science
Mechanical Engineering, Master of Business Administration, Master of Science
Materials Engineering, Master of Science Biotechnology, Master of Science Civil
Engineering, Master of Science Electrical Engineering.
Colorado State University
is waiving application fee of $60 for the below Graduate programs:
Master of Computer
Information Systems,
Master of Finance
Master of Business
Administration
Saturday, January 20, 2018
12th CBSE = RR Career Concept
#include
<iostream.h>
#include
<fstream.h>
#include
<stdlib.h>
Int main()
{ system(“cls”);
Ofstream fout(“student”,ios::out); //connect student file to output
stream fout
char name[30],ch;
float markes=0.0;
//loop to get 5 records
for(int I=0;i<5;i++)
{ cout<<”Student”<<(i+1)<<”:\tName:”;
cinget(name(30);
cout<<”\t\tMarks:”;
cin>>marks; cin.get(ch); //to empty input bugger
fout<<name<<’\n’<<marks<<”\n”;
}
fout.close(); //disconnect
student file from fout
ifstream fin(“student”,ios::in); //connect studentfile with
input stream fin
fin.seekg(0); //to
bring the file pointer at the file begaining
cout<<”\n”;
for(i=0li<5;i++) //display
record
{ fin.get(name,30); //read
name from student
fin.get(ch);
fin>>marks;; //read
marks from file student
fin.get(ch);
cout<<”Student
Name:”<<name;
cout<<”\tMarks:”<<marks<<”\n”;
}
fin.close(); //disconnect
student file from the stream
return 0;
}
12th cbse c++
#include<iostream.h>
#include<fstream.h>
#include<stdlib.h>
Class Student { char
name[40];
char grade;
float marks;
public:
void getdata(void);
void display(void); };
void Student ::
getdata(void)
{ char ch;
cin.get(ch);
cout<<”Enter name: “; cin.getline(name,40);
cout<<”Enter Grade: ”; cin>>grade;
cout<<”Enter Marks: “; cin>>marks;
cout<<”\n”;
}
Void
Student::display(void)
{ cout<<”Name:”<<name<<”\t”
cout<<”Grade:”<<grade<<”\t”
cout<<”Marks:”<<marks<<”\t” <<”\n”;
}
Int main()
{ system(“cls”);
Student arts[3]; //declare
array of 3 objects
fstream filin; //input
and output file
filin.open(“Stu.dat”,ios::in|ios::out);
if(!filin)
{
cout << “Can not open file!!\n”;
Return 1;
}
Cout <<”Enter details for 3 students \n”;
for(int i=0;I<3;i++)
{ arts[i].getdata();
filin.write((char *) & arts[i],
sizeof (arts[i]));
}
Filin.seekg(0); //seek
0 resets the file to start,so that the file can
//be
accessed from the beginning.
cout<<”The contents of stu.dat are shown
below.\n”;
for(i=0;i<3;i++)
{ filin.read((char
*)&arts[i],sizeof(arts[i]));
Arts[i].display();
}
Filin.close();
Return 0;
}
Friday, January 12, 2018
Tuesday, January 02, 2018
Subscribe to:
Posts (Atom)