9 lines
107 B
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;
|
|
}
|
|
|