Pages

Thursday, March 27, 2025

// simple "apna college" example to learn difference between do while and while loop

 #include <iostream>

using namespace std; // simple "apna college" example to learn difference between do while and while loop
int main(){
    int val = 1;
   
    do{
        cout << "apna college ";

    } while(val > 5);

    while(val > 5){
        cout << "apna college";
    }
    return 0;

}

No comments:

Post a Comment

Binary Search in a Sorted Array in C++

 #include <iostream> using namespace std; int binarySearch(int arr[], int key, int n) {     int si = 0;      int ei = n-1;          wh...