pl-sem/sem4/hello.c

13 lines
238 B
C
Raw Normal View History

2023-08-17 22:08:53 +00:00
#include <stdio.h>
extern void print_string(char* str);
extern void print_file(char* fileName);
/* hello.c */
int main() {
print_string("Enter the file name: ");
char input[255];
scanf("%s", input);
print_file(input);
}