Dersler tekrar ele alınmakta. Örnekler gerekliliğe ( zorunluluğa göre yazılmakta ) Fonksiyonların Geri Dönüş Değerleri (return value)
This commit is contained in:
parent
eab45a320b
commit
ab93cf0e5b
@ -1,3 +1,7 @@
|
||||
2025-03-07 Mert Gör <mertgor@masscollabs.xyz>
|
||||
|
||||
* 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>
|
||||
|
||||
* c-basic/CSD-C-Basic-Book/C.pdf: 30. page sqrt example solved
|
||||
|
16
c-basic/double_example_01.c
Normal file
16
c-basic/double_example_01.c
Normal file
@ -0,0 +1,16 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
double a,b,c;
|
||||
printf("enter double number a:\n");
|
||||
scanf("%lf", &a);
|
||||
printf("enter double number b:\n");
|
||||
scanf("%lf", &b);
|
||||
|
||||
c = a + b;
|
||||
|
||||
printf("%f", c);
|
||||
|
||||
return 0;
|
||||
}
|
13
c-basic/scanf_example_01.c
Normal file
13
c-basic/scanf_example_01.c
Normal file
@ -0,0 +1,13 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int a;
|
||||
int b;
|
||||
|
||||
printf("Enter two numbers:\n");
|
||||
scanf("%d%d", &a, &b);
|
||||
printf("a = %d, b = %d\n", a, b);
|
||||
|
||||
return 0;
|
||||
}
|
15
c-basic/scanf_example_02.c
Normal file
15
c-basic/scanf_example_02.c
Normal file
@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int a;
|
||||
int b;
|
||||
|
||||
printf("Enter number a:\n");
|
||||
scanf("%d", &a);
|
||||
printf("Enter number b:\n");
|
||||
scanf("%d", &b);
|
||||
printf("a = %d, b = %d\n", a, b);
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user