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. …
-1
votes
1answer
82 views
Secret Santa homework - How to start? [closed]
Hi. I've got the following task by my professor: I should write a Secret Santa application. As Input is given the number of participating persons and the number of drawings. The us …
1
vote
1answer
16 views
In-place C++ set intersection
The standard way of intersecting two sets in C++ is to do the following:
std::set<int> set_1; // With some elements
std::set<int> set_2; // With some other elements
…
1
vote
3answers
32 views
What is the Code Definition Window in Visual C++ 2008 Express?
I am working on the Sphere Online Judge problems (OK I am only on my 2nd lol) and using VC++ 2008 express and have just noticed the "code definition window". What exactly does this …
0
votes
1answer
23 views
convert a list of structs from c# to c++
I have the following c# code
static void Main(string[] args)
{
List<Results> votes = new List<Results>();
}
public struct Results
{
public int …
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'" …
1
vote
11answers
207 views
Representing probability in C++
I'm trying to represent a simple set of 3 probabilities in C++. For example:
a = 0.1
b = 0.2
c = 0.7
(As far as I know probabilities must add up to 1)
My problem is that wh …
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
2answers
32 views
invalid initialization of non-const reference of type ‘int&’ from a temporary of type ‘MyClass<int>::iterator*’
I'm getting the following error from g++ while trying to add iterator support for my linked list class.
LinkedList.hpp: In member function ‘Type& exscape::LinkedList::iterator …
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++ …
1
vote
4answers
61 views
C++ bool array as bitfield?
Hi!
let's say i need to store 8 bools in a struct, but i want to use for them only 1 byte together, then i could do something like this:
struct myStruct {
bool b1:1;
bool …
0
votes
1answer
51 views
Are there compiler flags to get malloc to return pointers above the 4G limit for 64bit testing (various platforms)?
I need to test code ported from 32bit to 64bit where pointers are cast around as integer handles, and I have to make sure that the correct sized types are used on 64 bit platforms. …
0
votes
1answer
38 views
boost split compile issue
I have the following code snippet. I am compiling using the sun studio 12 compiler and have tried boost 1.33 and 1.39
#include <boost/algorithm/string.hpp>
#include <stri …
0
votes
1answer
38 views
Printf and hex values
So, I have a value of type __be16 (2 bytes). In hex, the value is represented as 0x0800 or 2048 in decimal. (16^2 * 8)
So, when I printf this; I do this:
printf("%04X", value) …
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 …
