#include "ccc_time.h" doesn't work?

Hello, I was trying to program the current time and the time left for lunch, but it indicates that there was an error saying: error: ccc_time.h: No such file or directory|
What is wrong with the system? I have CodeBlocks by the way.


#include <iostream>
#include "ccc_time.h"

using namespace std;

int main()
{
Time current_time(10, 0, 0);
current_time.add_minutes(50);
cout << current_time.gethours() << ":" << current_time.getminutes() << ":" << current_time.getseconds();

Time now;
int minutes_left = Time(12, 0, 0).minutes_from(now);

cout << "There are " << miuntes_left << " minutes left for lunch.\n";

return 0;
}
Do you have a file called ccc_time.h (in the correct directory) ? The compiler is telling you that you don't
How can I check if there is a file called ccc_time.h? and how can I get that?
If you didn't make it you don't have it...
is there anyway to create that file?
File > New > Empty File

BTW, where did you get the code above from?
Topic archived. No new replies allowed.