hello.c included in main.c and compiled successfully

This commit is contained in:
2025-06-16 21:23:44 +03:00
parent 3ef17fb5ca
commit 01b39949c2
2 changed files with 5 additions and 9 deletions

View File

@ -1,5 +1,7 @@
2025-06-16 hwpplayer1 <hwpplayer1@masscollabs> 2025-06-16 hwpplayer1 <hwpplayer1@masscollabs>
* c-basic/CSD-C-Basic-Book/C.pdf: Unix/Linux Sistemlerinde Derleme ve Bağlama İşlemi sayfa 11
* c-basic/CSD-C-Basic-Book/C.pdf: C Temal kitabı baştan okunuyor. Sayı Sistemleri sayfa 4 * c-basic/CSD-C-Basic-Book/C.pdf: C Temal kitabı baştan okunuyor. Sayı Sistemleri sayfa 4
2025-03-21 Mert Gör <mertgor@masscollabs.xyz> 2025-03-21 Mert Gör <mertgor@masscollabs.xyz>

View File

@ -1,16 +1,10 @@
#include <stdio.h> #include <stdio.h>
#include "hello.c"
#ifndef HEX_READ_SCANF_H
#define HEX_READ_SCANF_H
extern void hex_scan();
#endif // HEX_READ_SCANF_H
int main() int main()
{ {
hex_scan(); hello();
return 0; return 0;
} }