Search Results

3
votes
1answer
318 views

getopt does not parse optional arguments to parameters

In C, getopt_long does not parse the optional arguments to command line parameters parameters. When I run the program, the optional argument is not recognized like the example run below. …
1
vote

C101: the best way to fill an array from user input?

C arrays begin counting from 0. If you allocate an array of size MAX, accessing the element at MAX would be an error. Change the loop to; int arr[MAX]; for ( .... && …
0
votes

How to escape an underscore in a C preprocessor token?

That barebone example works with gcc (v4.1.2) and tries to include "PROJECT_ir.h" …
13
votes

How do I check OS with a preprocessor directive?

There are predefined macros that are used by most compilers, you can find the list here Otherwise, you will have to adj …
6
votes

What C/C++ functions are most often used incorrectly and can lead to buffer overflows?

In general, any function that does not check bounds in the arguments. A list would be gets() scanf() strcpy() strcat() You should use size li …
3
votes

Using telnet in a C Program

Expect would allow you to interact with external programs, but I am not aware of a C port of expect. Otherwise you would find a teln …
6
votes

getopt does not parse optional arguments to parameters

Altough not mentioned in glibc documentation or getopt man page, optional arguments to long style command line parameters require 'equals sign' (=). Space seperating the optional argument from the …