User profile: Smac89

User info
User name:Smac89
Name:N_Mint
Location:/bin/bash
History
Joined:
Number of posts:1727
Latest posts:

Pass by reference (&)
[code]#include <iostream> void modifyMe(int &value) { value = 42; } void modifyMe2(int value) ...

need help
[quote]A university wants to develop an application that will manage its student’s records. Applic...

Does closing a stream also reset the position of the stream in the file?
It will reset. If you want to save the position, store in a variable by calling tellg on the stream...

GLFW vs SDL vs SFML
Did you try Googling? https://lmgtfy.com/?s=d&q=GLFW+vs+SDL+vs+SFML The best place to ask this woul...

Random number generator
Yes it's possible: - Pick a random number from that range - Remove that number from the range - Repe...