First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
concatenate vector of strings
Dear all, I tried to concatenate a vector<string> into one string by using copy algorithm however my code did not even compile. However I could not understand why I can not even compile it. Say, string str("C++ "); vector<string> strings(10, str); string s; copy(strings.begin(),strings.en... 14 Apr 2008 08:08
Update map Object
I have an STL map declared: struct CLIENTSTRUCT // Individual Department info int clientKey; // ClientKey int enrollKey; // Enrollment ClientKey int guarantorKey; // Guarantor ClientKey strin... 13 Apr 2008 12:43
Lesson 5, Arrays, Static, Dynamic, Multi Dimesional.
Hello, See comments. Or See web link: http://members.home.nl/hbthouppermans/VS2008Analysis/Index.htm // *** Begin of Main.cpp *** #include <stdio.h> typedef char int8; typedef short int int16; typedef int int32; typedef long long int64; typedef unsigned char uint8; typedef unsigned short uin... 14 Apr 2008 12:10
Lesson 4, Integer Assignments, Unsigned to Signed with Mixed Sizes (4 spectacular range detection failures)
Hello, See comments for details. // *** Begin of Main.CPP #include <stdio.h> typedef char int8; typedef short int int16; typedef int int32; typedef long long int64; typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned int uint32; typedef unsigned long long uint64; /* 1... 12 Apr 2008 15:53
i need help
what is use of pointer,link list,trees.volatile pointer. volatile what purpose use. i need static function,callback,inline example. ... 21 Apr 2008 03:30
Lesson 3: Integer Assignments, Signed to Unsigned with Mixed Sizes.
Hello, First of all I already found one or two IDE bugs depending on how one looks at it: 1. Freezing of IDE 2. Unable to rename folder because IDE hanging in tasklist. Anyway. Lesson 3: Integer Assignments, Signed to Unsigned with Mixed Sizes. This lesson is pretty interesting. It surprised me a c... 12 Apr 2008 02:12
VS2008 Editor Freezes, Can only add text, not remove ???
Hello, I was editing text in VS2008 IDE. I accidently press some kind of key combination near the enter keys or so. The editor freezes... I can only add text, but not remove ? Also the backspace and arrows keys are not working ? I am newby to VS 2008 IDE. What could be causing this and how do I get ri... 12 Apr 2008 01:25
Back to School with NoName: Lesson 2, Integer Range Checking
Lesson 1, Identified 4 weaknesses. Lesson 2, Identifies 16 weaknesses. (Think positive: at least the compiler, compiles, and the linker, links, which cannot be said for competing products of competitors.) See comments or see website for code/zips: http://members.home.nl/hbthouppermans/VS2008Analysis/Index... 15 Apr 2008 17:05
Point to a two-dimension array
There is a two-dimensional array: int grades[MAX][MAX]; for( i = 0; i < MAX; i++) for( j = 0; j < MAX; j++) grades[i][j] = -1; I would like to assign an another variable to this array, for example: int another_grades[MAX][MAX]; for( i = 0; i < MAX; i++) for( j = 0; j < MAX; j++) another... 18 Apr 2008 09:25
Back to School with Skybuck Flying: Lesson 1, Integer Basics.
Hello, See comments for details. // *** Begin of Main.cpp *** #include <stdio.h> typedef char int8; typedef short int int16; typedef int int32; typedef long long int64; typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned int uint32; typedef unsigned long long uint64; /* ... 16 Apr 2008 05:01
First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17