by morteza naji
solving a system of linear equation using Armadillo library in c++
|
|
[5 replies] Last: I have included path for armadillo file in include directory. so #inc... (by MikeyBoy)
|
by pLearner
Class and Object Calling Problem
|
|
[3 replies] Last: I think the error was called LNK multiply or something cannot remembe... (by mbozzi)
|
by stav
Preprocessor to iterate through enum ?
|
|
[4 replies] Last: Boost can also help here: #include <boost/preprocessor/tuple/to_seq.... (by toad)
|
if else and sending to columnar report. |
|
[3 replies] Last: Thank-you for posting the entire code. Now, go back and read @lastcha... (by doug4)
|
by les818
creating a program that will capitalize first letters in proper nouns
|
|
[8 replies] Last: word lets you configure it so that it gets it right nearly 100% of the... (by jonnin)
|
How to download any file from internet only using C++ Standard library (no third party library)? |
|
[5 replies] Last: [quote=poteto]I believe the tech spec is an adoption of boost asio, wh... (by Cubbi)
|
by AM111
C++ Exercise
|
|
[4 replies] Last: The problem was the <<endl; Thanks (by AM111)
|
by willie99
Assert and Void Help
|
|
[5 replies] Last: Your findAverage function is putting the "result" into the third var... (by Ganado)
|
by prestokeys
Encrypting any text
|
|
[3 replies] Last: ^^^ if you choose to use xor (or another self-reversing) as your base ... (by jonnin)
|
by chrichri
std function
|
|
[3 replies] Last: std::function<int(T)> (where T is some class/type) means that it's a f... (by Ganado)
|
by Mokkur123
I am trying to create a simple Math Solver Function.
|
|
[3 replies] Last: void foo() { double a {}; std::cin >> a; // allow input auto b... (by keskiverto)
|
by Spirrwell
Anonymous Namespaces With Using Directives
|
|
[1 reply] : (At first, I didn't catch that you needed an anonymous namespace.) Li... (by mbozzi)
|
by bishoposiris
E1696 cannot open source file "sys/socket.h"
|
|
[8 replies] Last: @mbozzi BasicLibTypes.h is listed below. Once I changed the WIN32 to ... (by bishoposiris)
|
by halleyc
Errors on code using functions: Not sure how to fix them
|
|
[4 replies] Last: I have fixed those errors Actually, you fixed some and created new... (by doug4)
|
by andytheandy
Turning the user cin>> answer into 3 separate variables to add them together.
|
|
[2 replies] Last: you can also read 3 char variables and run isdigit on each one. That m... (by jonnin)
|
The application supports a table of records using class to input data in data field. |
|
[3 replies] Last: Please note that this is not a homework site. We won't do your homewor... (by keskiverto)
|
supports a table of records.use a vector or a dynamic array to implement a table, |
|
[1 reply] : Do not double-post. The other thread: http://www.cplusplus.com/forum/g... (by keskiverto)
|
by CISPStudent
Gpa Analyzer need to add grade values in very much a beginner
|
|
[1 reply] : #include <iostream> struct Grades { static Grades get_id_and_sco... (by JLBorges)
|
by d0253
Read from txt file to array
|
|
[1 reply] : The >> reads only one word. For more. you must getline: http://www.c... (by keskiverto)
|
by explicit
Functions, File input/output
|
|
[3 replies] Last: Yes (by Thomas1965)
|