Skip to main content
Search
Search This Blog
Emmycodez Studio
Home
More…
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
April 02, 2021
A simple while loop in C++
#include <iostream>
using namespace std;
int main()
{
int i;
while( i<6)
{
cout<<i;
i++;
}
return 0;
}
Comments
Popular Posts
August 05, 2024
Choosing the Best Programming Language for you
January 07, 2024
Exploring Appy Pie: An Overview of the No-Code App Development Platform
Comments
Post a Comment