home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
-
-
- struct SEGMAP{
- unsigned saddr;
- unsigned eaddr;
- unsigned mode;
- };
-
- char p_char,*p_pchar;
- unsigned p_uchar,*p_puchar;
- static char p_schar;
- register char p_rchar;
- short p_short,*p_pshort;
- unsigned p_ushort,*p_pushort;
- int p_int,*p_pint;
- unsigned p_uint,*p_puint;
- long p_long,*p_plong;
- unsigned long p_ulong,*p_pulong;
- float p_float,*p_pfloat;
-
- static int p_array1[10];
- static int p_array2[20];
- static int p_array3[30];
- static int p_array10[5][5];
- static int p_array11[5][5][5];
- static int **p_ppint;
-
- static struct p_struct1{
- char sm1;
- char sm2;
- char sm3;
- int sm4;
- long sm5;
- float sm6;
- } p_s1;
-
-
- static struct p_struct2{
- char sm1[10];
- int sm2[20];
- long sm5[5][5];
- } p_s2;
-
- static struct p_struct3{
- char sm1;
- char sm2;
- char sm3;
- int sm4;
- long sm5;
- float sm6;
- } p_s3[3];
-
-
-
-
- main()
- {
- char t_char;
- char t_array1[258];
- char t_array01[13];
- int t_array2[10];
- int t_array02[11];
- long t_array3[12][13];
- int t_array4[12][14];
- char t_array5[12][14];
- long t_array6[12][14];
- struct SEGMAP t_struct;
- t_char=getchar();
- putchar(t_char);
- f1();
- }