Hi, I m new with Cproramming and just started. I want to run my
program. I write this program below. when i compile it gives error
line 13. count << d << end1;
[mod - it's endl (end-ell), not end1 (end-one) - it stands for END Line
In future it will be useful if you could copy/paste your error messages verbatim
- PJH]
#include <iostream>
using namespace std;
int main()
{
int a=20;
int b=30;
int d,e,f,h,g;
d=a+b;
e=a-b;
f=a*b;
g=a/b;
h=a%b;
cout << d << end1;
cout << e << end1;
cout << f << end1;
cout << g << end1;
cout << h << end1;
return(0);
}
will anybody help me out.
Thanks