Tagged Questions

1
vote
4answers
115 views

CPP: avoiding macro expansion of a macro function parameter

what I'd like to do (for logging purposes) is something like this: this code has been written to show my problem, actual code is complex and yes, I have good reasons to use macros even on C++ =) # …
0
votes
3answers
70 views

Where does the -DNDEBUG normally come from?

Hi, Our build system has somehow changed such that optimized builds are no longer getting the -DNDEBUG added to the compile line. I searched our makefiles and don't find this. So the question is, …
0
votes
7answers
66 views

Strange characters appear when using strcat function in C++

I am a newbie to C++ and learning from the MSDN C++ Beginner's Guide. While trying the strcat function it works but I get three strange characters at the beginning. Here is my code #include …
2
votes
4answers
133 views

two dimensional array using vector in cpp

Hi, I want to create 2D array using vector. But, when I do this, I get seg fault. Can anyone please explain what I am doing wrong, and possible solution for this problem. I made everything public …
0
votes
2answers
19 views

const attribute in class, should be public or protected ??

Hi All, I have some attributes which are const, so should these attributes be made public or protected ? I was in support of protected because it is used by some of the derived classes, but my …
0
votes
5answers
135 views

will there be any performance issue - if i use cpp inside c# ?

Hi all, i do have a cpp program which does text processing on 40k records. we developed this program in cpp because we thought it would be faster. then i used/executed this cpp part inside my …
1
vote
2answers
44 views

Python importing & using cdll (with a linux .so file)

Hi all! After one of my last questions about python&c++ integration i was told to use dlls at windows. (Previous question) That worked ok doing: cl /LD A.cpp B.cpp C.pp in windows enviroment, …
2
votes
4answers
71 views

debug vs. release dll size

Why in cpp a dll in debug mode is X10 bigger than release while in .Net they are almost the same size?