Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sendman123

    Regarding files in C

    Hi, I have a C program that reads the data from a file called "info" and prints it. Here is the code. #include <stdio.h> void main() { FILE *fopen(), *fp; int c ; fp = fopen("info","r"); c = getc( fp ) ; while ( c != EOF ) { putchar(c)...

Part and Inventory Search

Back
Top