Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int n = 9;
- /////////////////////////////////////////////////////////////////
- struct TTT
- {
- int n; // old
- char sz[123];
- };
- ///////////////////////////////////////////////////////////////////////////////
- int main() //
- {
- }
- /*
- #include <stdio.h>
- int n = 9;
- char sz[123] = "Dima jhghjghjghj";
- ///////////////////////////////////////////////////////////////////////////////
- int main() //
- {
- sz[4] = 0;
- for(int i = 0; i < 17; i ++)
- {
- printf("sz[%2d] = %3d (%c) \n", i, sz[i], sz[i]);
- }
- }
- */
- /*
- struct TTT
- {
- int n; // old
- char sz[123];
- };
- */
- // struct TTT y;
- /*
- #include <stdio.h>
- int n = 9;
- struct TTT
- {
- int n;
- };
- ///////////////////////////////////////////////////////////////////////////////
- int main() //
- {
- struct TTT y;
- y.n = 777;
- printf("Size of int = %d", sizeof(struct TTT));
- return 7686;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement