+ 3
Guys in recent weeks i saw a c++ program of putting stickers(emoji ) in output can you share that
same as the question
3 Answers
+ 6
You are welcome.
https://www.sololearn.com/post/23955/?ref=app
+ 6
I forgot his name *Kirk Schafer.
+ 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();
}