python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Why do I have to create a temporary reference to print something like: '(e1->next)->content' in C?
#include <stdio.h>
#include <stdlib.h>
typedef struct ListElemStruct {
int content;
ListElem next;
} *ListElem;
ListElem mkListElem(int content);
int main(void) {
ListElem...
Alexander
Votes: 0
Answers: 1
How to resolve linker when when using multiple files in Virtual-C?
This post can be closed, since someone gave an answer to my problem in the comments below.
The linked solution however has nothing to do with the problem and should be removed.
I am trying to build a...
Alexander
Votes: 0
Answers: 0
Return value from macro without gcc braced groups
If i have a macro that looks like that:
#define some_macro(x,y,z)({
operation1;
operation2;
...;
x+y+z; //return value
})
how can i make it return value without using gcc braced group...
E D
Votes: 0
Answers: 1
How does ANSI C-Quoting in Herestrings work?
Why is this not working?
bla="
multi
line
string
"
cat -A <<EOF
${bla//\$'\n'/\\\$'\n'}
EOF
this works:
cat -A <<EOF
$(cat <<<${bla//$'\n'/\\$'\n'})
EOF
as noted in ...
Booker B
Votes: 0
Answers: 2