This is a simple C++ program that uses a do-while loop to print numbers from 0 to 4. Here's a brief explanation of what the program does:
#include<iostream> using namespace std; int main() { int i=0; do { cout<<i<<"\n"; i++; } while(i<5); return 0; }To download raw file Click Here
01234
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions