Guys in recent weeks i saw a c++ program of putting stickers(emoji ) in output can you share that | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Guys in recent weeks i saw a c++ program of putting stickers(emoji ) in output can you share that

same as the question

19th Sep 2018, 2:26 PM
Charan Leo25
Charan Leo25 - avatar
3 Answers
20th Sep 2018, 7:45 AM
Hatsy Rei
Hatsy Rei - avatar
+ 6
I forgot his name *Kirk Schafer.
20th Sep 2018, 7:49 AM
Charan Leo25
Charan Leo25 - avatar
+ 3
by using ASCI somhow it's possible - #include <iostream> #include<conio.h> using namespace std; int main () { clrscr(); int sml=1, i, limit; char ch=sml; cout<<"How many smiley face you want to print ? "; cin>>limit; for(i=0; i<limit; i++) { cout<<ch<<" "; } getch(); }
19th Sep 2018, 9:49 PM
Michael
Michael - avatar