User Tools

Site Tools


c_-_c_pointers:pointer_to_structure

C - C++ Pointers - Pointer to Structure

#include <iostream.h>
#include <stdlib.h>
 
 
struct Employee 
{
  char title [50];
  int year;
};
 
 
int main ()
{
  char buffer[50];
 
  Employee aEmployee;
  Employee * pEmployee;
  pEmployee = & aEmployee;
 
  cout << "Enter title: ";
  cin.getline (pEmployee->title,50);
  cout << "Enter year: ";
  cin.getline (buffer,50);
  pEmployee->year = atoi (buffer);
 
  cout << "\nYou have entered:\n";
  cout << pEmployee->title;
  cout << " (" << pEmployee->year << ")\n";
 
  return 0;
}
c_-_c_pointers/pointer_to_structure.txt · Last modified: 2020/07/15 10:30 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki