feat: data_types

This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-06-23 03:39:29 +03:00
parent f8b61b1508
commit 6f2c8bf43d

11
002-data_types/main.c Normal file
View file

@ -0,0 +1,11 @@
#include <stdio.h>
int main() {
printf("Hello World\n");
int a = 3;
float b = 3.14;
char c = 'A';
printf("%d | %f | %c", a, b, c);
}