Skip to content

Instantly share code, notes, and snippets.

View juliecious's full-sized avatar

Julie juliecious

  • Germany
View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
int main () {
int n=0;
printf("1.請輸入一為整數陣列的大小: ");
scanf("%d", &n);
int *ary = malloc(sizeof(int) * n);