python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Bitwise operations and endianness in C program
I am having trouble trying to understand how exactly is my computer doing bitwise operations depending on endianness.
I've read this thread and this article and I think I have confirmed my machine wor...
carce-bo
Votes: 0
Answers: 1
How To Link External Dlls And More Specifically How To Manually Compile SDL?
Recently I stopped using IDEs in an attempt to learn more about the infrastructure of programming; I started compiling my C++ and C code with MinGW's compilers(g++.exe and gcc.exe accordingly) and the...
Ivan Gyulev
Votes: 0
Answers: 1
fatal error: 'SDL.h' file not found ON MAC
I tried to compile codes and i have an error.
In file included from ui.c:1:
./ui.h:3:10: fatal error: 'SDL.h' file not found
#include <SDL.h>
^~~~~~~
1 error generated.
but i've already in...
김동주
Votes: 0
Answers: 0
Why is SDL_Rect* array not functioning as intended?
I'm just trying to write a program to draw to a window using SDL. I'm trying to use rects to draw, and I thought that if I just don't clear the screen then I could leave a trail of where a rect has be...
tomii-dev
Votes: 0
Answers: 1