SCR/SCR3.1/TP4/test.c

9 lines
107 B
C

#include <stdio.h>
#include <stdlib.h>
int main(){
int t[4] = {1, 2, 3, 4}, u[2] = t[1:];
return 0;
}