![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| .tga file reader + programming language | JamesGoh | High Level Programming | 1 | 07-28-2008 09:47 PM |
| Readfile file reader: Version 0.9.4 released | iBot | Software Releases - RSS News | 0 | 07-01-2008 10:40 PM |
| need help ksh scripting for log file | CathyPro | Shell Programming and Scripting | 2 | 02-10-2008 05:17 PM |
| file activity (open/closed) file descriptor info using KORN shell scripting | Gary Dunn | UNIX for Dummies Questions & Answers | 3 | 06-07-2004 02:54 PM |
| Document file reader for HPUX | sskb | High Level Programming | 0 | 09-11-2002 01:14 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
C scripting file reader fgetc()
Code:
$ cat test a b c d e f g h i j k l m n Code:
FILE *p;
p = fopen("a.text","r")
int a;
while ( (a = fgetc(p)) != EOF ) {
printf ("current character is %c \n",a);
}
the code above only prints the first line of the file a b c d e i don't know why it doesn't go through the whole file. Can someone help me please? |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|