by iebwen
C++ program vunerablilities
|
|
[3 replies] Last: Thank you, this is brilliant. It always intrigued me how these things ... (by iebwen)
|
Help with my code |
|
[1 reply] : Line 17: temp.length() == 0 Line 19: Access to temp[temp.length()], wh... (by keskiverto)
|
by danicpp
Asking Permission!!!
|
|
[2 replies] Last: thanks, well I might need comments from your guys. O.K I'm gonna post. (by danicpp)
|
by bellmell
Converting char* to String^
|
|
[8 replies] Last: You can... Maybe not C++ but it can definitely call C functions. my... (by SIK)
|
by The Intern
Reading in space separated versus comma separated files
|
|
[4 replies] Last: each field element retrieved by the getline statement on line 23 will ... (by SIK)
|
Help with while loop |
|
[2 replies] Last: #include "stdafx.h" #include <iostream> using namespace std; int tri... (by IAandEEBLKFMA)
|
good online video tutorials |
|
[3 replies] Last: thanks guys (by tybalttheappleEater)
|
by f0rmiga
Variable inside a class, how to manage the memory allocation
|
|
[9 replies] Last: Thanks, ne555. I used std::copy now, on my tests, it was fully copyed.... (by f0rmiga)
|
by cavendert
Structures, Referencing Structures
|
|
[8 replies] Last: They are referring to the container std::map http://www.cplusplus.com/... (by BHX)
|
by wcdr
call a non variadic function from argument in container...
|
|
[no replies]
|
Simple encryption program runtime error |
|
[9 replies] Last: Thank you very much! I have no idea how I forgot this! Now I am getti... (by memberfunction)
|
by antirsi96
Problem compiling c++ program in windows
|
|
[3 replies] Last: There's more to it than what you are showing us, alas. Can we see you... (by Duthomhas)
|
by vinnidrk
Grabbing words from a text
|
|
[4 replies] Last: how do i translate the following line? auto begin = line.find(name_ta... (by vinnidrk)
|
by bencwl
encryption and decryption
|
|
[3 replies] Last: It's something of the form (x * n) % m. (by helios)
|
by DeathAngle
Please Help
|
|
[1 reply] : The problem is generally described as Inter-Process Communication, IPC... (by kbw)
|
by ne555
unnecessary dynamic memory allocation
|
|
[10 replies] Last: Yes. std::array is quite possibly the one and only exception. And th... (by Disch)
|
by zxrp
String Comparison
|
|
[1 reply] : > reading the words in the text file into a string array Perhaps, int... (by JLBorges)
|
by poohpooh
Struct pointer
|
|
[12 replies] Last: oh ok right while (*Options != '\0') is my loop to count the amou... (by poohpooh)
|
by jascns1012
file Operations inputting a file into program
|
|
[13 replies] Last: You cannot copy a stream, hence GetInputFile(...)/GetOutputFile(...) a... (by coder777)
|
by garrychang
std:sort() returns all zero
|
|
[1 reply] : std::sort doesn't return anything. It operates on existing values... (by cire)
|