Myanmar IT Resource Forum
Myanmar IT Resource Forum
Myanmar IT Resource Forum

You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

C0D3R

C0D3R
MITR Master



MITR Master
/* tolower example */
#include
#include
#include
int main ()
{
char c;
int i=0;
char str[]="Test [You must be registered and logged in to see this link.] String.\n"; //စာလံုးအၾကီးရိုက္ထားပါတယ္

while (str[i])
{
c=str[i];
putchar (tolower(c)); // tolower လို႔သံုးထားတဲ႔အတြက္စာလံုးအေသးေပၚမွာပါ
i++;
}
system("PAUSE");
return 0;
}
ေအာက္ကေနရာမွာ
putchar (toupperr(c));

ကိုသံုးမယ္ဆိုရင္ စာလံုးအၾကီးေတြခ်ည္းျဖစ္သြားပါလိမ္႔မည္
/* toupper example */
#include
#include
#include
int main ()
{
int i=0;
char str[]="Test [You must be registered and logged in to see this link.] String.\n";
char c;
while (str[i])
{
c=str[i];
putchar (toupper(c)); //ဒီေနရာမွာ toupper လို႔သံုးထားတဲ႔အတြက္စာလံုးအၾကီးေပၚမွာပါ
i++;
}
system("PAUSE");
return 0;
}

http://www.myanmaritresource.info

View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum

 

Free forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com