Skip to content

Instantly share code, notes, and snippets.

@geekmister
geekmister / Array.c
Last active June 12, 2024 08:05
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");
/**
* @ClassName: name
* @Description: description
* @Methods:
* 1. name: description
* @Author: geekmister
* @Date: xxxx/xx/xx
*/