pl-sem/sem4/hello.c
2023-08-18 01:08:53 +03:00

12 lines
238 B
C

#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);
}