new file = main.c and modified hex_read_scanf.c removed main from hex_read_scanf.c

This commit is contained in:
Mert Gör 🇹🇷 2025-04-12 22:29:04 +03:00
parent 0bb57da7ec
commit d6283d31cd
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#include <stdio.h> #include <stdio.h>
int main() int hex_scan()
{ {
int a, b; int a, b;

10
c-basic/main.c Normal file
View File

@ -0,0 +1,10 @@
#include <stdio.h>
#include "hex_read_scanf.c"
int main()
{
hex_scan();
return 0;
}