Guest User

Untitled

a guest
Dec 16th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. int main() {
  2. int c;
  3. int i = 0;
  4. int arr[10];
  5. while((arr[i] = getchar()) != EOF && i < 10) {
  6. printf("arr[i] is %cn",arr[i]);
  7. i++;
  8. }
  9. return 0;
  10. }
Add Comment
Please, Sign In to add comment