SCR/SCR3.1/TP4/test.c

9 lines
107 B
C
Raw Normal View History

2023-09-29 12:32:18 +02:00
#include <stdio.h>
#include <stdlib.h>
int main(){
int t[4] = {1, 2, 3, 4}, u[2] = t[1:];
return 0;
}