This commit is contained in:
Mert Gör
2024-10-29 09:52:32 +03:00
parent ed15ce44d4
commit ca1b5e05cf
4 changed files with 54 additions and 0 deletions

10
c-basic/scanf.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdio.h>
int main()
{
int a;
printf("enter a number : \n");
scanf("%d,", &a);
printf("your number is : %d\n", a);
}