Skip to content

Instantly share code, notes, and snippets.

View Pavelovich's full-sized avatar

Aleksandr Pavelovich Pavelovich

View GitHub Profile
#include <stdio.h>
int askInt(char *question[200])
{
int number;
printf(question);
scanf("%d", &number);
printf("The number is %d \n", number);
return number;
}