General C++ Programming - February 2014 (Page 11)

Input voice from Microphone
 
I want to make a program, which should take input from microphone, do speech recognition and then ma...
[1 reply] : You could try Microsoft's Speech SDK 5.1 for doing the recognition. I ... (by xismn)
Somethings not right
 
I am writing a calculator that puts the operands in one stack and the operators in the other stack. ...
[no replies]
Shared Pointers
 
Hi All, I tried to searh online regarding shared pointers and I read a lot that they avoid memory l...
[4 replies] Last: http://en.cppreference.com/w/cpp/memory/shared_ptr/shared_ptr#Example (by LB)
Efficiency of C vs C++ streams
 
For the common std libraries that handle data in C/C++ I was wondering which of these is A) the quic...
[9 replies] Last: Well I'm not particularly looking for a faster IO method, as I said I'... (by TheBeardedQuack)
Setting key=value pairs using C
 
Hi, I was wondering if there was a simpler way to use key=value pairs in C programming. I have a ...
[2 replies] Last: In that case, to initialize defaults, I have to do: struct settingPa... (by philonto)
Class problem c++ (1,2)
 
Hi guys, I've a problem, i've those class, that now works, because i've the attribute in public, but...
[28 replies] Last: Ok, i've resolved the problem, i hope... I put the methods insert and ... (by Raid3nz)
by EdFab
Question about size_t
 
Documentation states that size_t is defined in header <cstddef>. However, the following program runs...
[8 replies] Last: In the end you should use std::size_t if including cstddef. http://en... (by EdFab)
A set of C and C++ codes.
 
Hello guys ! I made a set of C and C++ codes in french, and now english. These little codes show...
[2 replies] Last: I made it on the forum "Beginners". This is the first time on this on... (by Fvirtman)
by Gyiove
Calling function by sending char text of function name.
 
Hello! Is this possible? int myfunc( int a, int b, char * c ) char a = "(int)myfunc()"; c...
[5 replies] Last: ( link says : Error 404: This page could not be found. ) That's beca... (by MikeyBoy)
Bubble Sort and Selection Sort
 
You will write a program that uses a multidimensional array having 3 rows and 8 columns and sorts ea...
[no replies]
Creating Classes
 
Hello experts! :) Our teacher told us to make something like: ---------------------------->Arrow...
[2 replies] Last: Dude, no need to double-post. http://www.cplusplus.com/forum/beginner/... (by mutexe)
by werlay
A Hard One Sort Of
 
Hello guys, first this is my code below. #include <string> #include <vector> #include <iost...
[2 replies] Last: @yanson467, (1) is there any way for the program to detect when a " ?... (by werlay)
Meyers singleton--Dead reference problem...Please help
 
Hi I am going throuh Meyers singleton design pattern and the dead reference problem. class MySin...
[3 replies] Last: See: http://www.stroustrup.com/C++11FAQ.html#default http://www.strous... (by JLBorges)
help with this code!!
 
#include <stdio.h> #include <stdlib.h> int main () { FILE * pFile; long lSize; char * buffe...
[3 replies] Last: answer my other questions. how i can print the buffer content how the ... (by Leonardo321)
by Absi
.udp
 
Hi, I would like to know how can I create a program who can adding data in .udp files .. Tha...
[no replies]
by coder1
Upper_bound
 
Hello, I'm having a problem using std::upper_bound here is the code: # include <iostream> # i...
[2 replies] Last: thank you very much. (by coder1)
by Gyiove
(3D) angle to vectors ( my terrible math... )
 
Hello! Ive created one function in the past: inline double vec_lenght( double *vector ) { ...
[no replies]
help difference between char buf[5] and char * arg[5]
 
what is the difference between those 2 functions int foo(char *ch ){} int foo(char ch ){} why...
[1 reply] : http://www.unixwiz.net/techtips/reading-cdecl.html char *ch is an ... (by Catfish666)
how to make a program autorun at windows startup, using regedit??
 
#include <iostream> using namespace std; #include <windows.h> #include <winuser.h> int Save...
[no replies]
Detect if xbox 360 guide button on pc is held down
 
Hi, I made this (found the trick on the net)that allow to use the guide button of a 360 pad. I us...
[2 replies] Last: thank you very much :) I integrated it to my code but when I tried to... (by Elgringo)
February 2014 Pages: 1... 910111213... 33
  Archived months: [jan2014] [mar2014]

This is an archived page. To post a new message, go to the current page.