Advertisement
thenewboston

C Programming Tutorial - 49 - Structures (pt. 1)

Aug 22nd, 2014
400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. // BuckysInfo.h
  2. struct user{
  3.     int userID;
  4.     char firstName[25];
  5.     char lastName[25];
  6.     int age;
  7.     float weight;
  8. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement