Long time no see

This commit is contained in:
2026-02-21 10:47:00 +07:00
parent 0d54fe176e
commit b7df98a55c
198 changed files with 3249 additions and 1 deletions
+30
View File
@@ -0,0 +1,30 @@
#include <stdio.h>
typedef struct{
char ch;
struct ste{
int x;
int y;
int z;
}st;
}STR;
int main(){
STR m1;
putchar('a'); //1
m1.ch = 'A';
putchar('g'); //2
(&m1)->ch = 'B';
putchar('z'); //3
putchar('z'); //4
STR* m2;
putchar('a');//5
m2->st.x = 'A';
putchar('g'); //6
(&(m2)->st)->x = 'B';
putchar('z'); //7
}