#include<iostre am.h>
#include<conio. h>
struct student
{
char name [20];
int age;
int roll;
};
void main();
{
clrscr();
student a;
cout<<"please enter name: ";
cin>>a.name;
cout<<"please enter age: ";
cin>>a.age;
cout<<"please enter roll no: ";
cin>>a. roll;...
User Profile
Collapse
-
i keep getting a error , termination terminated incorrectly
-
thanks a lot for posting, both of your posts were really helpful. -
if else statement
i keep having problem with my code
#include<iostre am.h>
#include<conio. h>
void main()
{
clrscr();
float a,b,c;
cout<<"Enter a number: ";
cin>>a;
cout<<"Enter another number: ";
cin>>b;
cout<<"Enter the type of computation (+,-,/,*) = ";
cin>>c;
if (c='+')
{...
No activity results to display
Show More
Leave a comment: