C Temel sonu
This commit is contained in:
parent
916aec8c20
commit
d5a50364e3
@ -1,5 +1,7 @@
|
|||||||
2025-03-07 Mert Gör <mertgor@masscollabs.xyz>
|
2025-03-07 Mert Gör <mertgor@masscollabs.xyz>
|
||||||
|
|
||||||
|
* c-basic/CSD-C-Basic-Book/C.pdf: C Temel notu tamamlandı
|
||||||
|
|
||||||
* c-basic/CSD-C-Basic-Book/C.pdf: Göstericiler (Pointers) sayfa 123
|
* c-basic/CSD-C-Basic-Book/C.pdf: Göstericiler (Pointers) sayfa 123
|
||||||
|
|
||||||
* c-basic/CSD-C-Basic-Book/C.pdf: Sayıların printf Fonksiyonuyla Formatlanması sayfa 78
|
* c-basic/CSD-C-Basic-Book/C.pdf: Sayıların printf Fonksiyonuyla Formatlanması sayfa 78
|
||||||
|
12
c-basic/cli_arg.c
Normal file
12
c-basic/cli_arg.c
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 0; i < argc; ++i)
|
||||||
|
|
||||||
|
printf("%s\n", argv[i]);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user