Code Library
Home Submit Free Hosting Link To Us Contacts

CPP Structures

CPP Structures CPP CPP Structures Download (.zip)



#include <string.h>
struct database
{
  int age;
  char name[20];
  float salary;
};

void main()
{
  database employee;
  employee.age=22;
  strcpy(employee.name, "Joe");
  employee.salary=12000.21;
}




  • CPPStructures


Tatet