General C++ Programming (Page 44)

between 2 dates
 
does anyone know how to search and display the total between 2 days without using lots of code
[3 replies] Last: thanks but not sure if that is what I need be able to input date 2 dat... (by Allan Walls)
Access violation problem
 
Trying to finish this last project so I never have to program again but I can't seem to find the err...
[4 replies] Last: There's probably a lot more wrong with this file. I'm just pointing ou... (by Computergeek01)
how to solve this?
 
Write your question here. Approximating the square root Implement the sqrt function. The squar...
[2 replies] Last: numGuess???? nextGuess = (lastGuess + (num/lastGuess)) /2 #include ... (by CroCo)
PAssing strings from C++ to FORTRAN
 
I'm trying to pass a string from c++ to FORTRAN. Can anyone advise how to do this?
[2 replies] Last: Don't forget to mention which compilers you're using, the approach ... (by Cubbi)
by Jijgee
LPCWSTR, string
 
#include <iostream> #include <string> #include <stdlib.h> #include <stdio.h> #include <Window...
[no replies]
Bubble Sort/Selection Sort
 
Bubble Sort/Selection Sort
[3 replies] Last: Those look sorted to me :) (by shacktar)
Control execution of code block by entry
 
Hi, I have a program including several code blocks in the following simplified structure: int...
[4 replies] Last: Do not use goto. It messes up program order and this is clearly not th... (by MiiNiPaa)
Number required after Prime Numbers addition
 
I have to write a code in which the addition of prime number gives the number user input.. for examp...
[2 replies] Last: The only thing I cannot understand is that how to make those pairs oth... (by Xnheritance)
Segmentation Fault.
 
#include <iostream> #include <fstream> #include <string> #include <vector> #include <sstream> ...
[1 reply] : Check count of parameters before using them. It leads to segfault if I... (by MiiNiPaa)
+ operator with reference parameters can not be chained
 
Hi! this doesn't compile: class myclass{}; myclass operator+(myclass &a, myclass &b){ re...
[1 reply] : myclass operator+( const myclass &a, const myclass &b){ ... (by MiiNiPaa)
Input and Output array using function
 
I want to create a function that will accept input from the user and return the input, to be used fo...
[3 replies] Last: An array argument is actually passed by reference Pointer to the firs... (by MiiNiPaa)
by packy
string
 
I want to create 2 functions to (1) convert a passed string into proper case (capitalize the first a...
[2 replies] Last: 1) If you don't mind C++11: #include <string> #include <algorithm> #i... (by MiiNiPaa)
C printf() issue
 
The following code crashes the process. Does anyone know why? #include <stdio.h> int main(int...
[2 replies] Last: Thanks. Stupid mistake... :) Some rest is in order. (by aaronfjerstad)
Cannot cast from void pointer: returns always error C2440
 
Hello everybody, I having a problem which I'm not able to resovle. I try to dereference a void po...
[3 replies] Last: Thank you so much. This did the job: wqueue<Soundfile*>* m_queue= ... (by dawansch)
Can anyone help me see why my pointer function is not working properly?
 
My professor tells me that my "push_back" is not working and I get a memory error after entering a 2...
[10 replies] Last: Any tips would be greatly appreciated I still am unable to get the dis... (by ovaltine99)
Runtime error in hash table
 
I am getting a strange runtime error when trying to run my hash table program. I have it separated i...
[1 reply] : inline HTable::HTable() { TABLESIZE=33; vector<list<string>> ht (T... (by cire)
What exactly is "Binding Time?"
 
What do we mean by "Binding Time?" And what does it have to do with recursion? I have no knowledge o...
[2 replies] Last: We can use a name (or identifier) to refer to an entity. For instance,... (by JLBorges)
Error message
 
I have some source code which were build in Microsoft visual studio 6.0, this moment I am using Mi...
[1 reply] : Have you bothered to do a search? Try here: http://goo.gl/anFF0 (by AdrianH)
by kcpolo
callback for a button
 
I have made a calendar that looks similar to Outlook, and I have the next/previous buttons, but they...
[4 replies] Last: Okay, thank you! (by kcpolo)
by Ram666
Coloring cells in HTML table
 
For this program i had to create an HTML with the cosine similarities. I got everything, i just need...
[3 replies] Last: int lowest = myValues ; int highest = myValues ; for (int i = 0; i ... (by Zaita)
Pages: 1... 4243444546... 87
  Archived months: [mar2013]

Cannot post in this page. To post a new message, go to the first page.