A Birthday wish program source code in c++ simple

    Birthday Wish

This is a program. Who wish you birthday at 300 times. and you coustmize. You are new so please SUBSCRIBE my YouTube channel.
Much more source code.

      Source Code is here 

copy here to πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡

//[This is a simple Birthday wish program]
#include<iostream>
#include<string>
using namespace std;
int main(){
string user_input;//Take user input (string)
cout<<"What is your name "<<endl;
cin>>user_input;// here is user_input
string wish = "HAPPY BIRTHDAY TO YOUπŸ‘‰";// you can customize your Type
for(int i = 1; i < 300; /* you can change the number of print*/i++){
cout<<wish<<user_input<<endl;
}


// Making by Techrozo YouTube channel
//Making Date:- 05/05/2021(Wednesday)

}
hereπŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†

Comments