HI
M GETTING A PROBLEM IN A C++ PROGRAMME IN DEV C++ COZ M USING IT FIRST TIME
I MADE A SIMPLE PROGRAMME
WHICH IS
#include<iostream>
using namespace std;
int main(void)
{
cout<<"kulwinder"<<endl;
system("pause");
return 0;
}
THIS SHOWING A WARNING BELOW
[Warning] no newline at end of file
HOW TO REMOVE THIS PROBLEM
ACCORDING TO ME THE WHOLE CODE IS CORRECT
Dear Sir,
You can try the following code:
#include<iostream>
#include<conio>
using namespace std;
int main(void)
{
cout<<"kulwinder"<<endl;
getch();
return 0;
}
Hope this will solve your problem.
With regards,
Matanuragi