11
votes
19answers
370 views
Where & How to start a career as a software developer
Hi All,
I am a newbie here. So please bear with me if this is a duplicate/very trivial Qn. I am not from a Computer Science background. But currently working in software testing. …
4
votes
4answers
100 views
Segmentation Fault With Char Array and Pointer in C on Linux
So I have the following program:
int main(){
char* one = "computer";
char two[] = "another";
two[1]='b';
one[1]='b';
return 0;
}
It segfaults on the line "one[1]='b'" …
2
votes
13answers
257 views
C - the most useful user-made C-macros (in GCC, also C99) ?
What C-macros is in your opinion is the most useful? I have found the following one, which I use to do vector arithmetics in C:
#define v3_op_v3(x, op, y, z) {z[0]=x[0] op y[0]; \ …
0
votes
2answers
86 views
Anybody tried to compile “Go” on Windows?, Its seems start supporting to generate PE Format now.
http://code.google.com/r/hectorchu-go-windows/source/list
If you could compile it successfully, I like to know the procedures of how to.
1
vote
0answers
11 views
Windows Named Pipe Problem
I'm writing a driver that communicates with a userland application through a named pipe.
The userland application creates the named pipe by calling CreateNamedPipe() and then passe …
3
votes
4answers
92 views
Binary compatibility between Linux distributions
Sorry if this is an obvious question, but I've found surprisingly few references on the web ...
I'm working with an API written in C by one of our business partners and supplied …
0
votes
5answers
106 views
Disabling NUL-termination of strings in GCC
Is it possible to globally disable NUL-terminated strings in GCC?
I am using my own string library, and I have absolutely no need for the final NUL characters as it already stores …
0
votes
1answer
26 views
NCURSES stdin in C
For some reason ncurses does not like stdin, I know I could use instead getstr(), here it is what I'm doing so far,
while (fgets(str, BUF, stdin) != NULL) {
printf("input some …
2
votes
6answers
162 views
Format a string in C
Normally you can print the string in C like this..
printf("No record with name %s found\n", inputString);
But i wanted to make a string out of it, how i can do it? I am looking …
0
votes
8answers
257 views
What if I dislike C++ Standard Library? [closed]
I am not accustomed to iostream,and think string is not easy to deal with.So is it possible to develop C++ programs without C++ Standard Library or at least with little use of C++ …
0
votes
5answers
52 views
Is it possible to have the name of the executable without the path?
Hi I'm trying to use the name of the executable and an usage string, I'm using argv[0] for such purpose but instead of the name of the executable itself it gives me the complete pa …
2
votes
10answers
324 views
Why doesn’t C++ reimplement C standard functions with C++ elements/style?
For a specific example,consider atoi(const std::string& ).I am very frustrated about this,since we programmers would need to use it so much.
More general question is why does …
1
vote
4answers
62 views
Grabbing memory from another process
in Windows, lets say I have used DLL Injection to get into another process. I have also done some screencaptures of the memory on the process I have injected into and know the loca …
0
votes
4answers
84 views
strcat() vs sprintf()
What would be faster? This:
sprintf(&str[strlen(str)], "Something");
or
strcat(str, "Something");
Is there any performance difference?
1
vote
3answers
58 views
Accessing contents of char** on a windows x64 cause exception
The following piece of code is causing an exception on a windows vista x64 and i can't figure why.
size_t pBaseAddr;
char *lpszFuncName;
IMAGE_EXPORT_DIRECTORY *pExportDir;
const …
