How to completely remove one element of an array?Let's say I have an array: [code] int ARRAY[] = [3,1,4,1,5,9]; [/code] Now lets pretend I want...
are screen commands in c++ possible?nvm I got it
How to make error messages?Lets say I made a square root function and I want an error message if the input is negative. How... ...
Recursive function as #define statementWhy does this work: [code] int factorial(int n){ return(n==0 ? 1 : n * factorial(n-1)); }[/...
are screen commands in c++ possible?is there a way to do screen commands like ctrl - a - <command_code> within c++? also, on another ...
This user does not accept Private Messages