0
Need enter 16 for true
How write in code
1 Odpowiedź
+ 1
Is this what you are looking for?
#include <stdio.h>
int main() {
int input = 0;
while (input != 16) {
printf("Enter number: ");
scanf("%d", &input);
printf("\n");
}
return 0;
}