Isimmons33
- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 3
-
Created C assert run/debug aborts but no output. Shows output when exe ran in terminal
AnsweredClion 2020.3 simple test of assert in C99 program #include <stdio.h>#include <assert.h>#include <stdbool.h>int main() { printf("Before assert\n"); assert(false); printf("After assert\n"); ... -
Created Set TERM environment variable for run/debug so it applies to every new project by default
CompletedI am running Clion 2020.3.1 on Mac OS Big Sur 11.1. There is a problem on Mac OS where the TERM environment variable is not set for run/debug which causes this error when running the system() funct...