Skip to content

Instantly share code, notes, and snippets.

@geekmister
Last active June 12, 2024 08:05
Show Gist options
  • Save geekmister/f83188852fb611acf4bec600f1e844ac to your computer and use it in GitHub Desktop.
Save geekmister/f83188852fb611acf4bec600f1e844ac to your computer and use it in GitHub Desktop.
CFragments
#include <stdio.h>
int main() {
int iArray[11], index;
for (index = 0; index < 11; index++) {
scanf("%d", &iArray[index]);
}
printf("The phone numbers are: \n");
for (index = 0; index < 11; index++) {
printf("%d", iArray[index]);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment