by Yany
Querying the value of a variable in SQL Server from C ++ (MFC)
|
|
[2 replies] Last: Thank you SIK. Yes, I just tried with stored procedure... create pro... (by Yany)
|
by kndtv
Help With Functions and Rand
|
|
[4 replies] Last: Line 15: You are seeding the random number generator AFTER you doing ... (by AbstractionAnon)
|
by markymark99
Format Setting for Dates
|
|
[5 replies] Last: A small point, make month = "ZERO" or something and do away with su... (by SIK)
|
by BrianStark
Expression must have a constant value
|
|
[3 replies] Last: Thanks so much for your answers. As you have said its VLA and Visual C... (by BrianStark)
|
by glennyballs
Getting errors and can't figure out why. PLZ HELP
|
|
[2 replies] Last: got it! thanks for the help (by glennyballs)
|
by WAKS
Multiply matrix with itself n times
|
|
[7 replies] Last: First of all, thanks for all the help. You all where right about the t... (by WAKS)
|
by hugeassnoob
error in reading data file
|
|
[2 replies] Last: i figured it out. added stdlib.h and used system("PAUSE"). i wasted 3... (by hugeassnoob)
|
by DTM256
Defining Class Functions for later
|
|
[8 replies] Last: Each feature I write these days, I want to push myself to use somethin... (by DTM256)
|
C++ Countdown and Count-up Loop |
|
[2 replies] Last: U can use the code as follows: #include <iostream> int main(int argc... (by Tupelo Shen)
|
by Wetster
Pointers and Functions
|
|
[1 reply] : The arguments of getData() are type pointer to int, pointer to int and... (by gunnerfunner)
|
by aashish1996
Inputting string&int from file
|
|
[6 replies] Last: Thanks everyone! Your suggestions really helped!! (by aashish1996)
|
by gg812915
Basic Programming
|
|
[1 reply] : Do you have any code written? (by Hengry)
|
by theupandup
OpenMP - parallel without "for"?
|
|
[1 reply] : I have no idea, but I see no for here: http://stackoverflow.com/ques... (by keskiverto)
|
by gdsturgill
Modiefied Recursive Fibonacci Sequence
|
|
[1 reply] : if (n == -1) { total+=1; return 1; } else if (n == 0) { tot... (by jonnin)
|
by bpugh3
Hangman Game Letter Track
|
|
[1 reply] : make an array of bools, 1 for each character allowed in your game. Set... (by jonnin)
|
The number of digits after the dot in a double number |
|
[3 replies] Last: Not sure how correct/portable this code is but it seems to work on cpp... (by integralfx)
|
by esolve
what does template <> mean?
|
|
[3 replies] Last: That's an explicit specialization of the class template default_conver... (by Cubbi)
|
by tehenson21
Ignore
|
|
[1 reply] : Quit using this site as a code dump. (by helios)
|
by jack101
Creating Matlab Structure in C++
|
|
[6 replies] Last: Hey Jack... I have a library that lets you convert M files to cpp file... (by jonnin)
|
by tariqles
How to fix this "signed/unsigned mismatch "
|
|
[4 replies] Last: Here's the definition of std::size_t from section 18.2 of the draft ... (by dhayden)
|