#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
struct time
{
int hour;
int min;
int sec;
};
void main()
{
time t1 = { 12, 22, 33 };
time t2;
t2 = t1;
cout << t2.hour << ": " << t2.min << ": "<< t2.sec;
_getch();
}
المزيد من الدروس و القوالب على احمد عبد الكريم
0 التعليقات:
إرسال تعليق