How to write first Program In C / C++

admin
0 minute read
0


First Program In C / C++

Description

A program to display "Hello World!" ignoring inverted comma

C

#include<stdio.h>
void main()
{
printf("Hello World!");
}


C++


#include<iostream>
using namespace std;

int main(){
cout << "Hello World!";
}
More like this.

Post a Comment

0Comments

Post a Comment (0)