Advertisement
ZinedinZidan

struct 1

Dec 2nd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. struct person
  4. {
  5.   int age;
  6.   float salary;
  7. };
  8.  
  9. int main()
  10. {
  11.     struct person person1,person2;
  12.     person1.age = 25;
  13.     person1.salary =22239.50;
  14.     printf("Age = %d\n",person1.age);
  15.     printf("Salary = %.2f\n",person1.salary);
  16.    
  17.     getch();
  18.    
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement