Home
About Us
Contact Us
Home-icon
You tube
Contact us
Topics
6/recent/ticker-posts
Home
Tech channel with dsk blogger
Program for displaying tables from 1 to 10 using OOPS programming language.
Program for displaying tables from 1 to 10 using OOPS programming language.
Tech channel with dsk
October 29, 2020
Tables program:
#include<iostream>
using namespace std;
int main()
{
int i,j;
for(i=1;i<=10;i++)
{
for(j=1;j<=10;j++)
{
cout<<i<<" * "<<j<<i*j<<endl;
}
}
return 0;
}
Click here for Online compiler
Post a Comment
0 Comments
Search This Blog
Followers
Social Plugin
Subscribe Us
Wikipedia
Search results
Popular Posts
Pointer to Arrays (Pointer part 2)
November 22, 2020
History of Java
December 30, 2020
File Handling in C language (Part 2)
December 29, 2020
0 Comments