python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
C Array check row and column. Issue with pointer(dereferencing NULL-Pointer warning)
I am still new to programming and this site please be nice to me an unknowing fool. I am currently working on an assignment. We need to make a Binoxxo puzzle in C and when entering a value check if it...

YukiKinimoto
Votes: 0
Answers: 1
What exactly happens when a MonoBehaviour is created with new?
I'm aware that it's "not allowed"; I did this by accident and it will thoroughly be removed from my final build. Obviously there's a good reason for that rule.
The weird thing is, it's in a ...
Michael Macha
Votes: 0
Answers: 1
Keep getting warning "Suggest parentheses around '&&' within '||' for C program
printf(" 1| %d | %d | %d | %d | %d\n",
((coffee_strength == 'm' || coffee_strength == 'M') &&
(coffee1_type == 'l' || coffee1...
ChecksOverStripes
Votes: 0
Answers: 2
GCC, clang disagree with MSVC on narrowing conversion
Consider the following program:
struct uint1 {
unsigned x;
uint1(unsigned x_) : x(x_) { }
};
struct foo { uint1 a; };
foo f(int v) {
return {v};
}
struct bar { unsigned a; };
bar g(i...
einpoklum
Votes: 0
Answers: 1