#include<conio.h>
#include<ctype.h>
void main()
{
char moto[100];
clrscr();
cout<<"Masukkan moto hidup anda : ";
cin.getline(moto,100);
for(int i=0; moto[i]; i++)
{moto[i]=toupper(moto[i])
clrscr();
cout<<"moto kamu jadi kapital : ";
cout<<moto<<endl;
getch();
}
This comment has been removed by the author.
ReplyDelete