Posts by IPSonic • 45 points
3 posts
-
3
votes3
answers2365
viewsQ: How to receive C input data until no more input?
So here’s the deal: How to receive C entries (integers) until "ENTER" is pressed? In my program, the user must enter a chained list in the following format: num0 num1 num2 num3 num4 num5 num6 num7…
-
0
votes3
answers289
viewsA: Error Segmentation fault without indentification
I finished the code. It’s like this now: #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #define MAX_CHAR 75 const char THE_END[] = "the end!";…
-
1
votes3
answers289
viewsQ: Error Segmentation fault without indentification
Hello, my friends! I am creating a program that will read a text. This text should be allocated one line at a time (up to 75 characters per line). The program receives, in the input , the user’s…