Software Needed

Status
Not open for further replies.

readermaniax

Ambassador of Buzz
I need A software With Wich I can Write Words In Alternate Sizes like eg:

"i wANt a sOfTwARe wId wICh i CaN wRiTE tHinGS lIKe tHIs"
 

kalpik

In Pursuit of "Happyness"
I could make a program for this ;) Hehe.. How much would u be willing to pay? :D kidding.. Its a very easy thing to do if u know a little bit of file handling..
 

ymhatre

Ambassador of Buzz
tht will be gr8 kalpik...
can u please tell the basic logic u r going to use behind tht program.....
Also please can u share tht software to me also....
 

forever

filth is me
can any1 plz tell me how to use 'special characters' like "¤?‡©–?ªš”¢•“š??–Œ’›”›¤ž£œ•’¤š“¦?”?¥š’", i have seen them so many times and so many places but dont know how 2 actually invoke them..
thanks guys..
 

kalpik

In Pursuit of "Happyness"
ymhatre said:
tht will be gr8 kalpik...
can u please tell the basic logic u r going to use behind tht program.....
Also please can u share tht software to me also....
Im assuming that u have a basic knowledge of file handling in c/c++. The basic logic is that capital 'A'=ASCII 65, small 'a'=ASCII 97 (if i remember correctly).. So basically take input all in small letters and decrease the ascii of every alternate charecter by 32 (97-65).. Thats it! If u people *really* want me to code it, ill do it :) Im just toooooooo lazy :p

@forever: Start->Programs->Accessories->System Tools->Character Map ;)
 
Last edited:

kalpik

In Pursuit of "Happyness"
Ok.. Done.. Try this: *kalpik.5gigs.com/ascii :) Made using PHP.
 
Last edited:

ymhatre

Ambassador of Buzz
oh thnx... tht was good...
Now i will try the same thing but replacing alphabets by some special characters....
for eg
A - Ã
a - â
...
I have the basic knowledge of C n C++
But i don know the ASCII values of these 'â'..

please if u can helpme.....
 

kalpik

In Pursuit of "Happyness"
Hmm

Try this:

int i;
for(i=0;i<=255;i++)
{
cout<<(char)i<<"\t"<<i;
}

This will give you all the ASCII values...
It it stops early, start from i=8 or 9 or 10.. I think 7 is for audible bell, so it will stop there.
 

kjuvale

Pharmaguru
Hey kalpik the thing you created was realyy very nice. are there any such things to play with words
 
Status
Not open for further replies.
Top Bottom