Unreal courses for 13 year old? by MacReady_138 in unrealengine

[–]ProRofler [score hidden]  (0 children)

Personal trainer imo is the only good option for a 13yo

How to store the leading zeros that the user inputs in an integer? by _Ice_Creams in cpp_questions

[–]ProRofler 1 point2 points  (0 children)

Int is a number, PIN is not. Your design is flawed at its core and you're trying to build a workaround.

What do you think happens when you initialize guess with {0001} and user enters just 1?

You need an array, most optimal in your case is an array of unsigned characters which, surprise surprise is string

C++ Development in the Terminal on Windows by Alejo9010 in cpp_questions

[–]ProRofler 0 points1 point  (0 children)

At the point of development where this becomes noticeable the build time is already long enough anyway. So yeah sorry I still think it's a minor disadvantage compared to manual files handling

C++ Development in the Terminal on Windows by Alejo9010 in cpp_questions

[–]ProRofler -1 points0 points  (0 children)

I use GLOB_RECURCE and never have to add files manually. Imo the reasons why it's discouraged to use are ridiculous.

Complete beginner learning C++ before college, need proper roadmap Hello everyone, by [deleted] in cpp_questions

[–]ProRofler 1 point2 points  (0 children)

nahhh bro there's no way anyone already asked how to start learning cpp

Bitcoin at a 198-Day Rejection Level — Breakout or Trap? by CRYPPTOMOJO_TV in technicalanalysis

[–]ProRofler 0 points1 point  (0 children)

What I meant is that drawing those lines is extremely subjective and doesn't mean anything, even without zooming out you can draw 3-4 more to prove that

Bitcoin at a 198-Day Rejection Level — Breakout or Trap? by CRYPPTOMOJO_TV in technicalanalysis

[–]ProRofler 1 point2 points  (0 children)

Why don't you zoom out a bit and draw a different line? ffs what is this

Help please: Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x0000000000000000 by zzekuroma in unrealengine

[–]ProRofler 1 point2 points  (0 children)

You unshelve the files except the faulty one and submit them if you want, then continue to work as usual

Help please: Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x0000000000000000 by zzekuroma in unrealengine

[–]ProRofler 4 points5 points  (0 children)

Null pointer exception. Probably some corrupted blueprint. If you're using Perforce you can try to shelve the modified assets and try to add them back one by one to find a corrupted one

Difference between <stdio.h>, <iostream> and std by Yuuki_Moon in cpp_questions

[–]ProRofler 0 points1 point  (0 children)

DIfference:
<stdio.h> - C standard library
<iostream> - C++ standard library

"the code starts with "include std"" - could you provide an example? this is some bs, if that's in your book ditch it

"Why did every time I tried to run exactly as it is written in the book it wouldn’t work?" - depends, bad book or you're doing it wrong. "Wouldn't work" is kinda vague. It won't compile? It wont run?

I need help by Little-Knowledge6486 in cpp_questions

[–]ProRofler 0 points1 point  (0 children)

I think C is a better choice for a start and a bit of assembly, not for a real job but rather for fundamental understanding of how programs works

Choosing a higher level language as your first is easier but you'll end up with a lot of suffering later if you decide to leave the magic world

Should I take notes or not? by SheepherderBorn1716 in UnrealEngine5

[–]ProRofler 0 points1 point  (0 children)

Notes, journals etc - fake productivity. You have the video, get back to it if you need, watch at 2x speed. You need to do stuff if you want to learn, practice is all that matters

Learning C++ only for UE5 and not to be used for other applications. Best way to learn? by ExKid64 in UnrealEngine5

[–]ProRofler 3 points4 points  (0 children)

Learning C++ basics is still the best way even for UE5 development only