Sayıların printf Fonksiyonuyla Formatlanması sayfa 78

This commit is contained in:
Mert Gör 🇹🇷 2025-03-07 07:38:02 +03:00
parent ab93cf0e5b
commit c03b39a30b
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
6 changed files with 77 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2025-03-07 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/CSD-C-Basic-Book/C.pdf: Sayıların printf Fonksiyonuyla Formatlanması sayfa 78
* c-basic/CSD-C-Basic-Book/C.pdf: Fonksiyonların Geri Dönüş Değerleri (return value) sayfa 22
2025-02-04 Mert Gör <mertgor@masscollabs.xyz>

View File

@ -0,0 +1,27 @@
#include <stdio.h>
#include <ncurses.h>
int main(void)
{
char ch;
do
{
printf("(e)vet/(h)ayir?");
ch = getch();
printf("%c\n", ch);
} while (ch != 'e' && ch != 'h');
if (ch == 'e')
printf("evet secildi\n");
else
printf("hayir secildi\n");
return 0;
}

11
c-basic/for_example_01.c Normal file
View File

@ -0,0 +1,11 @@
#include <stdio.h>
int main(void){
int i;
for (i = 0; i < 10; ++i)
printf("%d\n", i);
return 0;
}

12
c-basic/putchar.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
#include <ncurses.h>
int main()
{
char ch;
while ((ch = getch()) != 'q')
putchar(ch);
return 0;
}

View File

@ -0,0 +1,12 @@
#include <stdio.h>
int main()
{
int i = 0;
while (i < 10) {
printf("%d\n", i);
++i;
}
return 0;
}

View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main(void)
{
int i = 10;
while (i) {
printf("%d\n", i);
--i;
}
return 0;
}