Help needed making C program.

Newbie Member
5Jan2010,15:19   #1
naurozbaloch's Avatar
Hi Folks,
I need to make a C program in which ,
1)alphabets are assigned some values. e.g a=1,b=2,c=3,d=65 and so on.
2) computer takes input of a word. e.g the input word is "nauroz" given by user.
3)program prints the numbers which have been assigned to different alphabets and prints the number for word "nauroz".

plzz help needed. I am a newbie.
Banned
5Jan2010,19:35   #2
vignesh1988i's Avatar
pl. expalin the 2nd point properly.........
Banned
5Jan2010,19:36   #3
vignesh1988i's Avatar
sorry , pl. explain the 1st point... not 2nd point...
Newbie Member
7Jan2010,13:02   #4
naurozbaloch's Avatar
Thanks alot for your contributation . I have solved that problem.but not i want output of that program to be transfered on notepad , i don't know how to do this? could anyone plz help?

Thanks ,
Nauroz Baloch
Newbie Member
7Jan2010,17:45   #5
racergun80's Avatar
hi,

Open a file in write mode and with the extension .txt
then write to it.

You'll find lots of examples for writing to the file on the internet.

All the best
Contributor
7Jan2010,19:08   #6
Deadly Ghos7's Avatar
do either through cmd redirection using > operator like yourprogram.exe>file.txt or using the file handling concept of c
Code: c
FILE *fp;

fp = fopen("file.txt","ab+");
//this opens file handling mode
 
Now use various file output functions available in C to write what you want in to the text file.
Newbie Member
8Jan2010,19:01   #7
naurozbaloch's Avatar
what is cmd redirection?
i tried the above code compiler warmed me that fp is assigned a value that is never used?
what to do with this. I am new to programming.
Thanks all for contribution.
Ambitious contributor
9Jan2010,10:12   #8
venami's Avatar
The above code given by "DeadlyGhos7" tells you how to open a file. But you have to finish the code by referring to other examples of FILE programming in C.

Command redirection will redirect the output of a program(which will be printed on screen) to any other file that we want.