- Home
- Course Category
- Course Result
- Course Detail
Hot Line: 0124-2383121
Course Introduction
Programs for practice
In the program below, we've introduced beginers to programming in C++
Source Code: Print Integers
/* C++ Program - Print Integers */
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int num=10;
cout<<"The value of num is "<<num;
getch();
}
Output
The value of num is 10