Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 11
Member Avatar for Samuelandjw

Hi, I have some experience with Visual C++. Recently I have been trying to develop on Mac OS X, and the IDE of choice is naturally XCode. It is very straightforward in VC++ to build the program in DEBUG configuration or RELEASE configuration. But as a newcomer for XCode, I …

0
56
Member Avatar for yap.nice

hey whatzzzup guys??? i just want to know if this c++ programming language is hard co'z my clasmates are keep on complaining abort that hehe

Member Avatar for akilank
0
155
Member Avatar for Samuelandjw
Member Avatar for Samuelandjw

I often hear the saying that iostream is inefficient in terms of performance, and it is better to use printf family if type-safe is not concern. But as far as I know, the static type checking (is this thing people call the 'type-safe' do?) is done in the compilation, and …

Member Avatar for MosaicFuneral
0
1K
Member Avatar for Samuelandjw

I use VS C++ 2008, and I have the following code [code=C++] int main() { int maze_size=5; int[3][2] oppo_pos = { {maze_size-1,maze_size-1}, {maze_size-1,0}, {0,maze_size-1} }; return 0; } [/code] When I compiled, VS gave out the following error messages: 1>c:\dev\visual studio 2008\projects\test\main.cpp(4) : warning C4091: '' : ignored on left …

Member Avatar for Sky Diploma
0
109
Member Avatar for Samuelandjw

Hi! Everybody, I have several c++ sources files as following: main.cpp: [code]#include "A.hpp" int main() { return 0; } [/code] A.hpp: [code]#ifndef A_HPP_ #define A_HPP_ #include "B/B.hpp" #endif /* A_HPP_ */ [/code] B/B.hpp: [code]#ifndef B_HPP_ #define B_HPP_ class Foo { int foo(int val); }; #endif /* B_HPP_ */ [/code] B/B.cpp: …

Member Avatar for VernonDozier
0
101