viewing paste Unknown #18210 | C++

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include <iostream>    
#include <time.h>
#include "struct.h"
 
using namespace std;
 
struct timeType
{
    int hour    = 11;
    int minuet  = 22;
    int second  = 33;
};
 
timeType ReturnTime()
{
    timeType TIME;
 
    return TIME;
}
Viewed 631 times, submitted by Guest.