
please wait
by adam2016
next step
|
Hi guys, so my question here is what next how do I start to actually learn how bigger and more useful applications are written,and I mean applications like ... |
Aug 31, 2018 at 9:01pm
[1 reply] : [quote=adam2016]how do I start to actually learn how bigger and more u... (by Cubbi)
|
by aurimas13
function pointers: trying to pass a function as an argument (1,2)
|
Hello, my program works ok when I pass to the function simpson all four parameters as doubles and ints, but because I need the last parameter to be passed as a ... |
Aug 31, 2018 at 7:36pm
[25 replies] Last: [quote=aurimas13]I understand your given example - it's easy. It shoul... (by keskiverto)
|
by pLearner
Code Formatting - Need Help C++
|
Hey all I need some help. I am new and still learning. I have a curious question on code formatting: Should I put braces like this when there is a lot of code ... |
Aug 31, 2018 at 4:32pm
[2 replies] Last: I assume this is not on the global scope (obviously, but the lack of s... (by poteto)
|
by Spirrwell
Couple std::vector Questions
|
Hello there! So I have two main questions regarding std::vector 1: Is there a non-copyable version of it? I'm not asking about a std::vector containing no... |
Aug 31, 2018 at 3:16pm
[7 replies] Last: Have you thought about ignoring the issue and just making sure you use... (by poteto)
|
by JUAN DENT
With what can I replace codecvt_utf8_utf16?
|
Since codecvt_utf8_utf16 and codecvt_utf16 are deprecated in C++17, what can we do to obtain the same functionality? Thanks!! |
Aug 31, 2018 at 10:37am
[2 replies] Last: std::codecvt_utf8_utf16 and std::codecvt_utf16 (and std::codecvt_utf8 ... (by Cubbi)
|
by LeeStar
If "Template type" used as function's return value, how to instantiate it without via function parameter?
|
My question is about "Template type" is used as return value. Function template MakeRequest use template type as return value. In the function template, there... |
Aug 31, 2018 at 1:16am
[2 replies] Last: OK, Thanks. Due to the first question, I thought "InterfaceRequest<Int... (by LeeStar)
|
by parallx
Memory allocation and deallocation
|
setMap(): This method receives the name of a text file that contains an ASCII map. The map will be a square, equal number of rows and columns. The first line ... |
Aug 30, 2018 at 4:36pm
[8 replies] Last: Cool thanks kbw. Cubbi I'll look them up, thanks. (by parallx)
|
by ionic
program that find a defined macros in source files,count and print
|
The program which should take file names from windows command line. c:\mac_find main.cpp chars.h the output of the program should print information like 1)to... |
Aug 30, 2018 at 4:02pm
[1 reply] : Please do not double post. http://www.cplusplus.com/forum/beginner/241... (by Thomas1965)
|
by Cambalinho
C++: vectors: why i lose data?
|
i have 1 vector public inside of a class. after create a class, i create an instance\object. now i call the class function that add information on vector. on... |
Aug 30, 2018 at 3:16pm
[7 replies] Last: i found the error: for(unsigned int i =0; i<strCompile.size(); i++) ... (by Cambalinho)
|
by Amaris
Performance in vector search
|
How can I enhance performance here? Assignment: Implement function countNumbers that accepts a sorted vector of unique integers and counts the number of v... |
Aug 30, 2018 at 2:49pm
[7 replies] Last: Never said that upper_bound is the correct solution. Lower ... #incl... (by keskiverto)
|
by krisb
generating new variables
|
Is there a way to declare/create a variable after a program is executed is with a name that is obtained from data obtained after the program is executed? For e... |
Aug 30, 2018 at 12:55pm
[4 replies] Last: can I refer to string fruit to name an int apple? no, you would hav... (by Jaybob66)
|
by navilgameboy
a program opening itself??
|
hi, so i want to make a "virus" prank on my friends(no other use, i promise), so i was thinking about making a direct download link and make them download a pro... |
Aug 30, 2018 at 8:58am
[8 replies] Last: I did this joke one time: In the birthday of one of my friends i did ... (by HealCode)
|
by tibrado
Help with Destructor for a 2D Array?
|
I have a class which has two 2D arrays (int ** M_Array and int** M_Temp). Everything works fine in except when running the destructor. I am aware that I should ... |
Aug 30, 2018 at 7:02am
[7 replies] Last: Thanks for the replies guys. I have decide to rewrite the pointers arr... (by tibrado)
|
by PonasM
Compiling to a standalone file without any library dependencies
|
Hey everyone. I tried googling it, but with no luck. I have written this small program with C++, and I am trying to make it standalone. I compile with g++ -std=... |
Aug 29, 2018 at 7:14pm
[7 replies] Last: I solved my problem by reducing the number of libraries my code uses, ... (by PonasM)
|
by mo13
Need urgent help with this
|
so i posted this a little while back: Write a C++ program that implements a linked list as an abstract data type. The program must: Be type flexible, that i... |
Aug 29, 2018 at 4:51am
[3 replies] Last: tisk tisk, I would've reported this for dupe threading. (by poteto)
|
by hassanAman
Reverse keys in a Map
|
How can I reverse keys in a Map? For example: "Key 1" - "Value 1" "Key 2" - "Value 2" "Key 3" - "Value 3" To "Key 3" - "Value 1" "Key 2" - "Value 2"... |
Aug 28, 2018 at 7:38pm
[3 replies] Last: Thanks! (by hassanAman)
|
by JUAN DENT
With what can I replace std::unary_function?
|
unary_function has been removed in C++ 17. What can I replace it with? |
Aug 28, 2018 at 5:39pm
[3 replies] Last: Thanks JLBorges, as usual!! (by JUAN DENT)
|
by umbrajager
Power of 2
|
Hello,I'd just like some help figuring out how this code works. It was for an assignment where we just needed to make comments, and I already turned it in. Just... |
Aug 28, 2018 at 5:29pm
[3 replies] Last: goodness! if it works at all, it does it the hard way. your functio... (by jonnin)
|
by farzinhj
cryptography algorithm
|
i wrote encryption of cryptography algorithm can anyone write decryption ? algorithm a little looks like cezar cipher in encryption two parameters sum together ... |
Aug 28, 2018 at 4:34pm
[2 replies] Last: new link in zip file https://files.fm/u/mr2j2ds3 (by farzinhj)
|
by Amaris
Correctness und Performance in Binary Tree Search
|
Can someone help me? I can't find the mistake. The assignment Im working on: Binary search tree (BST) is a binary tree where the value of each node is larger... |
Aug 28, 2018 at 3:47pm
[3 replies] Last: are you asking theory stuffs? in theory a binary search tree is binary... (by jonnin)
|