Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int n = 9;
- ///////////////////////////////////////////////////////////////////
- struct lkjdfg
- {
- int t;
- int t2;
- char szName[100];
- };
- lkjdfg arr[30];
- ////////////////////////////////////////////////////////////////////////
- int main() //
- {
- arr[1].t2 = 1234567;
- printf("arr[1].t = %d\n", arr[1].t );
- printf("arr[1].t2 = %d\n", arr[1].t2);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement