getchar tag

1 questions


1 answers
137 views
0
About getchar() function / scanf() function

int main(void) { int evil1, evil2; char ch;do { printf(Enter a pair of integers:\n); scanf(%d %d, &evil1, &evil2); printf(The lesser of %d and %d is %d.\n, evil1, evil2, (evil1 < evil2) ? e...

2 years ago

© 2024 OneMinuteCode. All rights reserved.