What is the format of a "hello world" beginner's program in dev c++?
Answers
Answered by
1
// My first C++ program
#include<iostream.h>
int main ( )
{ cout<<"Hello World";
return 0 ;
}
#include<iostream.h>
int main ( )
{ cout<<"Hello World";
return 0 ;
}
Similar questions