hope someone can help.
I'm working on a problem set passing arguments in C99 on Ubuntu, part of the problem set specifies that non-integer characters should lead to an early return from the main function and program termination.
For example:
#include <stdio.h>
int main(int argc, string argv[])
{
// code
}
I've discovered that if I pass the program a '
character at the end of a series of digits e.g. ./runme 12345'
it seems to open some kind of shell/prompt.
Can anyone help with what this is?