Well, at the end, i ended up in the engineering faculty, i wanted to go with computer science, but my parents were thinking in another direction, but still, i was a little happy when I found out that we have a computer science class in this faculty.
So let's get to it, I would love to go further in the C language and programming, so if you please, you can help me a little bit in here, for now my question will be soo naif, but....
So I started with this
The same for 'M1' and 'H1', what that suppose to mean!
So let's get to it, I would love to go further in the C language and programming, so if you please, you can help me a little bit in here, for now my question will be soo naif, but....
So I started with this
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{puts("This fucking annoying worthless application, will help you know what hour will it be after a specific time given by you ( the lame user ), in condition that\nyou add the local time \n");
puts("WARNING!: Use the HH:MM:SS format when supplying the time to the system");
printf("Local time = ");
int H1, M1, S1;
scanf("%d:%d:%d",H1,M1,S1);
printf("You gave %d:%d:%d as local time\n",H1,M1,S1);
system("pause");
return 0;
}
The program is compiled, and then when it reachs the scanf line, i get "Run-Time Check Failure #3 - The variable 'S1' is being used without being initialized."The same for 'M1' and 'H1', what that suppose to mean!