sqrt example solved now we are on the page 30 pow

This commit is contained in:
Mert Gör 🇹🇷 2024-11-22 06:54:50 +03:00
parent 6d36efe449
commit 6bf23d6f0e
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2024-11-22 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/C.pdf: Page 30 pow example
* c-basic/sqrt.c: Sqrt example written page 30
2024-11-10 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/C.pdf: Page 29(end of 29) and 30 Bazı matematiksel standart c fonksiyonları

16
c-basic/sqrt.c Normal file
View File

@ -0,0 +1,16 @@
#include <stdio.h>
#include <math.h>
int main()
{
double val;
double result;
printf("Enter a number");
scanf("%lf", &val);
result = sqrt(val);
printf("%f\n", result);
return 0;
}