Re: C++ programming error Programming by rproffitt … marks and maybe more. Read https://en.cppreference.com/w/cpp/language/escape Example follows: #include <iostream> using namespace… Re: Help with functions - basics Programming by rproffitt Rather than dive into c++ like that, try tutorials like we see at https://www.w3schools.com/cpp/cpp_functions.asp How should I make a cast? Programming Software Development by linq [cpp code] hIcon = LoadImage(NULL, "menu_two.ico", IMAGE_ICON, 32, 32, LR_LOADFROMFILE); error C2440: '=' : cannot convert from 'void *' to 'struct HICON__ *' Conversion from 'void*' to pointer to non-'void' requires an explicit cast So I think I should make a cast to make this work at C++ compiler,but how? programs Programming Software Development by sripad44 cpp programs Re: passing arrays of objects Programming Software Development by veda&& … dynamic memory because we haven't taken them yet ! mall.cpp its not complete ... [CODE]#include <iostream> #include…i]} } void AddShop(shop a , int p){ [/CODE] shop.cpp [CODE] #include <iostream> #include "shop.h&… here too i am tring to figure them out item.cpp [CODE] #include <iostream> using namespace std; #… Re: How To create an instance of a Class in Visual Basic Programming Software Development by debasisdas .CPP and .H files can't be directly referenced fronm VB. compile to .DLL file and then instanceate in VB. Re: Non- Recursive a to the power n Programming Software Development by Aia >cpp(23) : error C3861: 'mypower': identifier not found Do you know what that cpp means? You are compiling the code as a C++ program. C code must end as *.c Anyway. The error says that you are not prototyping the function mypower correctly. Re: error LNK2019 unresolved external symbol Programming Software Development by jigar23 .cpp and .c doesnt make any difference if u r running a C code. Thanx a lot for replying. The issue is resolved. In visual studio, we have to add the the .c files which the .h file have calles to the source(in the solution explorer) Re: GUI proram organization question Programming Software Development by Ancient Dragon … not c++). Many programs consist of both *.c and *.cpp files. Header files normally (except c++ templates) consist of…The implementation code is normally contained in *.c and *.cpp files. >>Are you saying that individual custom … limited to only one c++ class and correcponsing *.cpp implentation file. So if the program consists of two… Re: Using header files... classes... and objects Programming Software Development by darkis .cpp files and .h files are all different ways of…save your main file with int main() as name.cpp then when you are writing your program...add into name….cpp #include "name.h" and that will include… your compiler u only run the compiler on the .cpp file and it does the .h file too Just … Re: Program that determines if a number is prime Programming Software Development by mina1984 cpp noob using your program, which tests for the integer input by the user, how you could test all the numbers from 1 to 10,000? I duno i was all curious about it too. :) Mina Re: guess number 3 times Programming Software Development by erialclaire_238 cpp 4.5 [CODE]#include<iostream.h> int main() { … Re: Dos commands using command line arguments Programming Software Development by sanuphilip CPP program to simulate the following DOS commands using cmmand line arguments - 1. copy 2. type 3. del 4. dir 5. rd CPP Community Center Say Hello! by dipspari Hello friends! I m dips,intrested to know about C,CPP,VB,SQL specially. so please help if needed. cpp Programming Software Development by sangha6 i have to make a program in cpp that finds max,min and avg value from a table and the table is to be retrieved from a location.......any ideas how to do it?????? cpp Programming Software Development by varunsara what is virtual destructor in cpp?.. if any specific topic like virtual destructor please tell CPP Programming Software Development by Varad_1 I am a kid of 15 and just started learning cpp. I want to make a simple programme wherby if i say hi to the computer it must respond by saying hello to me. So please give the coding or programme for it. Re: CPP Programming Software Development by bernardo.mclobo You can start learning with a code like this ... [Click Here](http://www.hitmill.com/programming/cpp/helloWorld.htm) And you need to read the tutorials and books that are in internet sites. Have fun coding :) Cpp Programming Software Development by surayanbo pleas give me a good book to understand cpp more. Re: Cpp Programming Software Development by pritaeas https://www.daniweb.com/software-development/cpp/threads/70096/c-books Re: CPP Include Path not seen by compiler?? Programming Software Development by daino …CXX object src/CMakeFiles/podofo_static.dir/base/PdfObjectStreamParserObject.cpp.obj [ 19%] Building CXX object src…CXX object src/CMakeFiles/podofo_static.dir/base/PdfRefCountedInputDevice.cpp.obj [ 24%] Building CXX object src… object src/CMakeFiles/podofo_static.dir/base/PdfXRefStreamParserObject.cpp.obj [ 32%] Building CXX object src… cpp code for a game stuck Programming Software Development by varun.sharma I made a code(test1.cpp) from an existing code of a game (ramble_shuffle.cpp) using classes...but the code gets stuck somewhere...Iam unable to find the fault...can some1 find please...the code hangs up.... Original game code : shuffle_game.cpp my code : test1.cpp cpp compiler Programming Software Development by AirGear i usually use Visual Studio 6 or sometimes Dev Cpp.. but, they can't show me the runtime and the memory spent.. i need that information, to make sure that my program is qualified.. can someone help me about cpp compiler that can do that? thx. Re: .cpp in terminal Programming Software Development by StuXYZ … You have written some c++ in a file called firstProgram.cpp and you want the output to be called sumNumbers. you… would do this [code] g++ firstProgram.cpp -o sumNumbers [/code] Once that had successfully completed. [If it… doesn't then you wil need to edit firstProgram.cpp and fix the problem.] You can run it with [… CPP file and excel Programming Software Development by SETHU S please inform, I want to connect one CPP data file with excel data file. How to connect (link) one excel file with cpp data file. Which is the header file for the same. Re: CPP file and excel Programming Software Development by Tomtommitom [QUOTE=SETHU S;1619095]please inform, I want to connect one CPP data file with excel data file. How to connect (link) one excel file with cpp data file. Which is the header file for the same.[/QUOTE] i don't know CPP Include Path not seen by compiler?? Programming Software Development by daino I'm trying to build a CPP library and have set the CPP Include path as below. I Am using Windows XP with… Re: .cpp in terminal Programming Software Development by daviddoria try [code] g++ yourfile.cpp [/code] This will produce a binary called a.out. You can also do this to specify the name of the binary file: [code] g++ yourfile.cpp -o nameOfBinary [/code] Cpp program to play wav ffile (sound) Programming Software Development by danibootstrap … my problem statement is to just create a C or Cpp file to play the wav file by not creating a… .cpp in terminal Programming Software Development by coding101 i have a text file on my desktop saved as a .cpp file and has code in it. how do i compile and run it in in terminal using the given g++????