Computer Science, asked by Anonymous, 1 year ago

What is the format of a "hello world" beginner's program in dev c++?

Answers

Answered by anchal2002
1
// My first C++ program
#include<iostream.h>
int main ( )
{ cout<<"Hello World";
return 0 ;
}
Similar questions