Skip to content

Instantly share code, notes, and snippets.

@ironsmile
Created November 29, 2010 17:42
Show Gist options
  • Select an option

  • Save ironsmile/720276 to your computer and use it in GitHub Desktop.

Select an option

Save ironsmile/720276 to your computer and use it in GitHub Desktop.
class kalendar{
public:
char month[10];
int day;
char hour[5];
void days(char m[10], int d, char h[5]){
this->month[10] = m[10];
this->day = d;
this->hour[5] = h[5];
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment