This commit is contained in:
Akbar Rahman 2023-10-03 12:16:10 +01:00
parent abc01ee776
commit b3554501ed
Signed by: alvierahman90
GPG Key ID: 20609519444A1269
3 changed files with 39 additions and 0 deletions

13
C7/ex3.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
#include <math.h>
int main() {
float radius, height;
printf("Enter radius: ");
scanf("%f", &radius);
printf("Enter height: ");
scanf("%f", &height);
printf("Surface area: %f\n", 2*M_PI*radius*radius + 2*M_PI*radius*height);
}

11
C7/ex4.c Normal file
View File

@ -0,0 +1,11 @@
#include <stdio.h>
int main() {
char name[200] = { 0 };
printf("What is your name? ");
scanf("%s", name);
printf("Hello %s\n", name);
}

15
C7/ex5.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
int main() {
char name[200] = { 0 };
int age = 0;
printf("What is your name? ");
scanf("%s", name);
printf("What is your age? ");
scanf("%ud", &age);
printf("Hello %s\nYou are %d years old\n", name, age);
}