49,761 Topics

Member Avatar for
Member Avatar for Ghost

What's the coolest program you've ever written in regular C++, not Visual C++?

Member Avatar for shouvik
0
405
Member Avatar for manav_sh

can somebody give me an idea as to how do i go about developing a C++ application with capabilities of calling a number, answering calls etc.

Member Avatar for Chainsaw
0
67
Member Avatar for kohkohkoh

based on the forum at [url="http://www.daniweb.com/techtalkforums/thread6305.html"]http://www.daniweb.com/techtalkforums/thread6305.html[/url] i tried to change the color but still only black and white screen. can anyone show me a simple example, so i could learn from there... i'm learning c++; thank you.

0
70
Member Avatar for yeohsli

i m just learning pointer in c++. and i coded a program. however the output is not wat i wanted. :?: [code] #include <iostream> using namespace std; void descending( int *, const int ); void ascending( int *, const int ); int main() { int input[10]; int *p = input; …

Member Avatar for yeohsli
1
89
Member Avatar for Kyman2008

I recently bought the "Teach Yourself Game Programming In 24 Hours" and it doesn't seem to be helping me much. The book gives you code for a game but really doesn't explain it or tell you how to use it in your own game. I am attempting to make a …

Member Avatar for FireNet
0
113
Member Avatar for RobinA

Hi im programming a program thats going to count how how many doussins,grosses and pieces. there are if you enter a number. (just so u know ive started programming 1 week ago and havent programed alot cause school started) ok heres my problem: when i enter 502 pieces it says …

Member Avatar for RobinA
0
93
Member Avatar for Asif_NSU

Sorry Inscissor, I couldnt approve the reason why you closed that thread. I think learning about viruses can be quite educational. If no one studied about viruses it would not have been possible to make anti-viruses. Learning to know how to create viruses or atleast discussing about viruses is no …

Member Avatar for FireNet
0
127
Member Avatar for matika

working on a project on c++ consol application and need to change the color of a specific letter in a text on the output screen 4 example : [COLOR=SandyBrown]V[/COLOR]Ie[COLOR=Red]w[/COLOR] pllz help thx :confused:

Member Avatar for FireNet
0
109
Member Avatar for chound

Can I create a virus with c or c++? [SIZE=5][FONT=Fixedsys]Will anyone teach me how to do it?[/FONT][/SIZE] :( :twisted: Why doesn't anyone add to my reputation? :cheesy:

Member Avatar for samaru
-2
225
Member Avatar for Lothia

I am using Microsoft Visual C++, and when i try and compile something i either can't or i get " Cannot compile the file in 'C\Program Files\Microsoft Visual Studio\Common\tools\H1.h'; no compile tool is associated with the file extension" I have placed it in so many different places and each time …

Member Avatar for Lothia
0
319
Member Avatar for hfick

I am stuck on this problem..you are supposed to locate the error in the segment of code: char var1, ptr1; var1='X'; ptr1=&var1; Can someone please help me figure this out. It is much appreciated.

Member Avatar for FireNet
0
335
Member Avatar for hail2dthief

I :cheesy: want to input a string but instead of showing the real characters on the screen, i want all to be astericks. Can anybody help me to solve this?

Member Avatar for hail2dthief
0
403
Member Avatar for kalinga

I am having a problem regarding nesting loops.for example for(int x=1;x<10;x++){ for(int y=1;y<x;y++) i want to know what this statement means. I posted a question to the forum but the moderator has unfortunately taken it off. I need some help regarding the concepts of the program given below.just give me …

Member Avatar for alc6379
0
105
Member Avatar for sonix

below is one of my function call of a program done in C: /* asks if the players would like to have another game of Tic Tac Toe */ void prompt_user(int game[][SIZE]) { char reply; printf("\nPlay Again? (Y/N): "); scanf("%c", &reply); if(reply == 'Y' || reply == 'y') { print_empty_board(); …

Member Avatar for kc0arf
0
122
Member Avatar for yesuf

Dear members, I am self practicing C++ and I am interested to understand ADTs in C++. It became challenging to understand, but seems very interested. So for my clear understanding, I invite any member to assist me to understand the implementation of linked list using pointers in dynamic memory allocation …

Member Avatar for Chainsaw
0
253
Member Avatar for kalinga

i need some help in understanding to write the following programs.please describe how you think of doing it.. 1) * ** *** **** ***** ****** ******* 2)******* ****** ***** **** *** ** * thank you.....

Member Avatar for rishiraj_bayerd
1
125
Member Avatar for owobass

I wish to become a system software developer.I mean I want to be writing compilers, operating systems and the like.I don't know which languages will be most appropriate for the task.At the monent I know some c++ but I don't know if one particular language could be better than the …

Member Avatar for Chainsaw
0
167
Member Avatar for nanosani

Is c # slower than c ++? Actually I am a little familiar with c and java ... now I am in a mood to learn c #. Is it better than c and java?

Member Avatar for nanosani
0
318
Member Avatar for RobinA

hi im new to c++ (started today) and im reading a book about c++ (called C++ Programming A) Well i started to read and learned the first code and wrote it in Microsoft Visual C++ and i get a error (error C2065: 'cout' : undeclared identifier) i dont know why …

Member Avatar for FireNet
1
226
Member Avatar for varma
Member Avatar for coolice

Hi ! I am sorry to disturb here with a so complicated question, but I got lost since weeks, and I dod not found any help. I am trying to learn programing in BCB so i am amateur. I am trying to create a kind of pop3 proxy, which could …

Member Avatar for FireNet
0
88
Member Avatar for biel_andrada

Hi! Thanks for the help regarding vectors :) It really helped me. Now, I have a problem regarding classes. I do not know the problem in this program #include <iostream.h> #include <ctype.h> //islower(), toupper() #include <stdlib.h> //exit( ) class Temp { public: Temp( ); Temp(double initDeg, char initScale); double Degrees(); …

Member Avatar for gusano79
0
104
Member Avatar for the_one2003a

Hi I created a class,simplified class is like below: #include<iostream.h> class cCat { public: //Constructors and Destructors cCat(); ~cCat(); //Accessor Function int & cCat::GetAge() const{ return *itsAge;} //Convertion operator cCat(int); // cCat object =int x private: int *itsAge; }; cCat::cCat() { itsAge = new int; *itsAge= 20; } cCat::~cCat() { …

Member Avatar for the_one2003a
0
136
Member Avatar for Sphyenx

Ok, ive done all my reasearch, is this how i should learn them.... Python, C, then C++, then JAVA, then PERL?? now should i forget botui Q/basic, an dpascal, and C# or add those in.

Member Avatar for Killer_Typo
0
113
Member Avatar for Sukhbir

#include<iostream.h> void main() { cout<<"hello"; } //IF WE COMPILE THIS PROGRAMME IT WILL NOT PRINT HELLO ON U'R SCREEN.TELL ME WHY & TELL ME PROCEDURE HOW IT PRINT USING COUT IN VC++

Member Avatar for stg110
0
275
Member Avatar for smithag261

I'm new to C programming. I could not understand how to write the following programs. 1. Any year is input through keyboard. Write aprogram to determine whether it is a leap year or not.

Member Avatar for let us c
0
156
Member Avatar for Ghost

Can anybody help me with some or all of these problems? Problem 1: Write the definition of a function minMax that has five parametersª. The first three parametersª are integersª. The last two are set by the function to the largest and smallest of the valuesª of the first three …

Member Avatar for WhataNerd
0
218
Member Avatar for WhataNerd

This is just a general C++ question. For someone who has been working with C++ for a while now, my question is what are the best articles-books-anythings to read or do when starting out using C++ . I have a new found passion for programming, and i just want to …

Member Avatar for WhataNerd
0
152
Member Avatar for Ghost

You replied to my post earlier. I had the C++ question on remainders. The compiler said your code was incorrect :twisted: , so I thought i would give you the orriginal question. Here it is: Write the definition of a function divide that takes four arguments

Member Avatar for Ghost
0
481
Member Avatar for Nexxuz
Member Avatar for Killer_Typo
0
105

The End.