python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why are my Preprocessor Directives locked
I've done lots of research but haven't found any answers yet.
I'm working on a plugin to run inside a proprietary program called Autodesk Revit. This plugin needs to be distributed to 3x different com...
floretti
Votes: 0
Answers: 1
How do c/c++ preprocessors work when encountering unknown directives?
Do c/c++ preprocessors process all lines that begin with #?
Does is errors out when encountering unknown macros or will it just ignore them?
for an example,
#include <stdio.h>
#hello
int main()...
Nethrenial.
Votes: 0
Answers: 3
is it possible to define multidim arrays with #define directive in pure C?
I want to manage my packs of string constants separately from the computational code. I want to do it in separate file.
So, I need to create a multidim array of strings and conclude it under a STR_PAC...
Mk Kvease
Votes: 0
Answers: 2
Conditional inclusion: integer constant expression is limited?
C11, 6.10.1 Conditional inclusion, Constraints, 1 (emphasis added):
The expression that controls conditional inclusion shall be an integer constant expression
C11, 6.6 Constant expressions, 6 (empha...
pmor
Votes: 0
Answers: 1