[ create a new paste ] login | about

Link: http://codepad.org/RUvrAZIi    [ raw code | output | fork ]

C++, pasted on Jan 24:
#include <iostream>
#include <string>
using namespace std;


typedef struct Student
{
 char name[20];
 int math , english , history;
}Student;



int main(){
 Student a  = {  "田中" , 20 , 23 ,42, };


cout << a.math << endl;


 return 0 ;
}


Output:
1
20


Create a new paste based on this one


Comments: