SabirSazzad

Pointer structer

Mar 17th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. struct Student
  5. {
  6.     string name;
  7.     float cgpa;
  8. };
  9. int main()
  10. {
  11.     Student *p, s1, s2;
  12.     p = &s1;
  13.     cin >> p->name;
  14.     cout << s1.name;
  15.  
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment