Search found 26 matches

by Empirean
June 11th, 2018, 6:29 am
Forum: Everything
Topic: Laziness
Replies: 9
Views: 3174

Re: Laziness

@Yumtard i like listing stuff. It is by far the most effective technique that worked for me in the past. I'll start listing again. Thank you so much.
by Empirean
June 10th, 2018, 5:23 pm
Forum: Everything
Topic: Laziness
Replies: 9
Views: 3174

Re: Laziness

Also yes I'm trying to become a game programmer. Its my passion and the only thing that can make me happy at this point.
by Empirean
June 10th, 2018, 5:21 pm
Forum: Everything
Topic: Laziness
Replies: 9
Views: 3174

Re: Laziness

Thank you for the response Alacaster. I have read your response multiple times just so we are on the same page. Not letting your father fetch you from school is a great example. I wish I can come up with something to make my objectives necessary but I'm too lazy to think of one other than the obviou...
by Empirean
June 10th, 2018, 11:39 am
Forum: Everything
Topic: Laziness
Replies: 9
Views: 3174

Laziness

Hello guys, its a non-programming related topic. How do you overcome laziness? Lets admit it sometimes we get lazy but how do you get yourself motivated and continue to do stuff that is outside your daily routine? I'm a lazy person and i do stuff fast cause I'm lazy but it has become a negative part...
by Empirean
February 28th, 2018, 4:17 am
Forum: Everything
Topic: Executing something inside the ide???
Replies: 6
Views: 2251

Re: Executing something inside the ide???

Thank you so much for the response. I will look it up and hopefully learn it and apply somewhere in the future. :)
by Empirean
February 27th, 2018, 10:03 pm
Forum: Everything
Topic: Executing something inside the ide???
Replies: 6
Views: 2251

Re: Executing something inside the ide???

No, he typed something on his sample program after entering some numbers. Pls look at tutorial 4 of the intermediate series. Thanks
by Empirean
February 27th, 2018, 3:48 pm
Forum: Everything
Topic: Executing something inside the ide???
Replies: 6
Views: 2251

Executing something inside the ide???

How did chili open up an (.html) file using c++? Thanks.
by Empirean
October 20th, 2017, 11:22 am
Forum: Everything
Topic: texts
Replies: 14
Views: 5911

Re: texts

I appreciate the time you spent explaining things albinopapa. Thank you so much for a very comprehensive response.
by Empirean
October 19th, 2017, 10:57 pm
Forum: Everything
Topic: texts
Replies: 14
Views: 5911

Re: texts

Thank you for showing me how to use strings albinopapa. I still dont fully grasp pointers. I know its gonna be relevant in the future since linked lists runs using pointers. Any tips?
by Empirean
October 19th, 2017, 11:54 am
Forum: Everything
Topic: texts
Replies: 14
Views: 5911

Re: texts

Hello albinopapa, heres my code. void print(char* s, int size) { for (char* p = s; p < s + size; p++) { _putch(*p); } } void scan(char* buf) { for (char c = _getch(); _getch() != 13; buf++) { _putch(c); } } int main() { print("Enter a number :", 18); char m[1000]; char* msg = m; scan(msg); print("\n...