0% found this document useful (0 votes)
11 views1 page

Practical No - 01

The document outlines a practical exercise to write a C++ program that prints 'Hello World'. It includes the necessary code snippet using standard input/output libraries. The program is simple and demonstrates basic C++ syntax and structure.

Uploaded by

priya.rajak
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

Practical No - 01

The document outlines a practical exercise to write a C++ program that prints 'Hello World'. It includes the necessary code snippet using standard input/output libraries. The program is simple and demonstrates basic C++ syntax and structure.

Uploaded by

priya.rajak
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Practical no:-01

Aim:-Write a program to print Hello World in c++.

INPUT:-

#include<iostream>

using namespace std;

int main()

cout<<"Hello World";

return 0;

OUTPUT:-

You might also like