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 |
|
pl. expalin the 2nd point properly.........
![]()
|
|
Banned
|
|
| 5Jan2010,19:36 | #3 |
|
sorry , pl. explain the 1st point... not 2nd point...
|
|
Newbie Member
|
|
| 7Jan2010,13:02 | #4 |
|
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 |
|
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 |
|
do either through cmd redirection using > operator like yourprogram.exe>file.txt or using the file handling concept of c
Code: c
|
|
Newbie Member
|
|
| 8Jan2010,19:01 | #7 |
|
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 |
|
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. |


