Posts by Kelve • 27 points
3 posts
-
0
votes2
answers94
viewsA: What does the expression "!(errS&errE)" do in the if?
Do if(!errS) is the same as if(errS == 0), if for example the variable type errS for int. You mean the variable errS is empty. I hope I’ve helped.…
-
0
votes2
answers69
viewsA: I’m creating a three-lane game but I can’t get to the next question
The program closes because you do Return 0 after if. I think what you intended was : #include<stdio.h> #include<stdlib.h> #include<time.h> int main() { int n,pts=0; char…
-
1
votes1
answer2799
viewsQ: Makefile returning "Missing Separator" error
I am trying to run a Makefile that Compile programs in 'C'. TARGET=client server CC= gcc CFLAGS= -Wall -Wextra -g LDFLAGS = -lm -pthread -lncurses DEPS = util.h normal: $(TARGET) client: client.c…