C++ Program to print a string Get link Facebook X Pinterest Email Other Apps - July 14, 2021 //C++ program to print a stringINPUT:#include<iostream>using namespace std;int main(){ cout<< "Subscribe our channel"; return 0;}OUTPUT: Get link Facebook X Pinterest Email Other Apps Comments
12.c++ program to print numbers from 1 to 10 using for loop - July 28, 2021 //C++ program to print numbers from 1 to 10 INPUT: #include<iostream> using namespace std; int main() { int i; for(i=1;i<=10;i++) { cout<<i<<endl; } return 0; } OUTPUT: Read more
Comments
Post a Comment