112 Posted Topics

Member Avatar for dcving

Use Loop to deal with names , and Ascii to convert the first letter to capital one

Member Avatar for Chainsaw
0
118
Member Avatar for Robin Low

:) hey man we dont so assignment for students you must learn then do efforts then we can help you ..

Member Avatar for Narue
0
153
Member Avatar for idicula

You Must write a semicolon(;) after any statement to make the compiler understand thau u finished the statement..okay and i need to see the code ..

Member Avatar for MoreCom
0
341
Member Avatar for Ghost
Member Avatar for rishiraj_bayerd
Member Avatar for rishiraj_bayerd

check this link :D [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDrawingPrintingPrinterSettingsPropertiesTopic.asp[/url]

Member Avatar for Naveen
1
159
Member Avatar for blessedrose82

hi man .. see this code it may help u to figure out ur problem .. and try to make an effort in ur assignment Cuz no one can do t for u .. [code] /* Scheduling Simulation*/ #include <stdio.h> #include <stdlib.h> /* Process Data Structure */ struct process { …

Member Avatar for meabed
0
652
Member Avatar for biel_andrada

yeah .. this my assignment in the past .. try it .. it work fine .. ;) [code] #include <iostream.h> #include <stdlib.h> main() { // int array[10]={1,2,3,4,5,6,7,8,9,10}; int left=0,right=9,middle; int number,i; bool sw=false; // cout<<"ARRAY: "; for (i=0;i<=9;i++) { cout<<array[i]<<";"; } cout<<" \n"<<"Number to find: "; cin>>number; while (sw == …

Member Avatar for meabed
0
140
Member Avatar for Naveen
Member Avatar for diablo
Member Avatar for crazybitez

see " Advanced string technique " it C++ tutorial .. btw .. The C++ standard library provides a class called string. Its been used in several programs so far. To use it you need #include <string> using namespace std; Note the (tiny) difference (there is also the using namespace std;. …

Member Avatar for meabed
0
167
Member Avatar for Marilyn_Manson

[code] #include <iostream> using namespace std; [color=red]int[/color] double Square (double Value); [color=red]int[/color] main () { double Number, SquaredNumber; Number = 5; SquaredNumber = Square (Number); cout << SquaredNumber << endl; return 0; } [color=red]int[/color] double Square (double Value) { double SquareReturn; SquareReturn = Value * Value; return SquareReturn; } [/code]

Member Avatar for Dani
0
172
Member Avatar for psk

look at this example ... [code] #include <fstream> • <fstream> header file using namespace std; – Use ifstream for input int main() – Use ofstream for output { ifstream ifs; ifs.open(“in.txt

Member Avatar for Dave Sinkula
0
220
Member Avatar for freesoft_2000

Introduction --------------- The Visual Component Library (VCL) provides various built-in classes to perform file processing. Most of the features are provided through the TFileStream class. To perform file streaming using this class, first declare its instance using its constructor whose syntax is: [code] __fastcall TFileStream(const AnsiString FileName, Word Mode);[/code] The …

Member Avatar for meabed
0
246
Member Avatar for Helter

I've got AnsiString foo; How do I pass this to a function which needs a char? (eg., strcpy, etc). Answer: foo->c_str(). The c_str() method of the AnsiString class returns a const char* which can be used to read, but not modify, the underlying string.

Member Avatar for Helter
0
150
Member Avatar for sroberts82
Member Avatar for Preston

check this link :) [url="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformscontrolclassclicktopic.asp"]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformscontrolclassclicktopic.asp[/url]

Member Avatar for Preston
0
81
Member Avatar for InvalidDLL

The following code is an example of how to implement a Doubly Linked List. Let me know what you think of the code and if it has helped you in any way. [code] // "DoublyLinkedList.cpp" #include<iostream> #include<conio.h> using namespace std; class node { public: int data; node *right_link, *left_link; }; …

Member Avatar for meabed
1
113
Member Avatar for vistatic

_strrev, _wcsrev, _mbsrev Reverse characters of a string. char *_strrev( char *string ); wchar_t *_wcsrev( wchar_t *string ); unsigned char *_mbsrev( unsigned char *string ); Routine Required Header Compatibility _strrev <string.h> Win 95, Win NT _wcsrev <string.h> or <wchar.h> Win 95, Win NT _mbsrev <mbstring.h> Win 95, Win NT Libraries …

Member Avatar for meabed
1
361
Member Avatar for ellisrn

this is my assignment in the past ..:) [code] #include <stdio.h> #include <iostream.h> #include <math.h> #include <fstream.h> /* Different methods for solving ODEs are presented We are solving the following eqation: m*l*(phi)'' + reib*(phi)' + m*g*sin(phi) = A*cos(omega*t) If you want to solve similar equations with other values you have …

Member Avatar for meabed
0
175
Member Avatar for mohansameer
Member Avatar for Naveen

[url]http://www.cis.temple.edu/~jfiore/tutorials.html#telephone[/url] check this tutorial it is very good

Member Avatar for meabed
0
74
Member Avatar for freesoft_2000

Check this link .. .:) [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_ccombobox_class_members.asp[/url]

Member Avatar for meabed
0
106
Member Avatar for Sriram

Hii.. all . . how r u ? .. i think that u must study FO ( File Oranization ) .. *[B]Image presentation [/B] *.* [B]Visual Perception[/B] When processing images for a human observer, it is important to consider how images are converted into information by the viewer. Understanding visual …

Member Avatar for meabed
0
337
Member Avatar for meabed

[B]Creating a C++/Assembly Project [/B] The project we'll develop in this tutorial will consist of a main() function written in C++. It will call an assembly function named clear(). Since Visual C++ does not recognize assembly code, VC++ will have to be told what program to call to compile the …

Member Avatar for Chainsaw
1
1K
Member Avatar for newbeginney

[left]this function get the minimum value for numbers that the user will input [/left] [left] [/left] [left]#include<iostream.h> [/left] [left]using namespace std;[/left] [left]int min(const in *Numbers, const int Count)[/left] [left]{[/left] [left] int Minimum = Numbers[0];[/left] [left] for(int i = 0; i < Count; i++)[/left] [left] Minimum = Numbers[i];[/left] [left]return Minimum; } …

Member Avatar for newbeginney
0
214
Member Avatar for 3maddy3

[b]Game Development 101—Animation, Input and Falling Blocks of Terro[/b] [u][color=#0000ff][/color][/u]I know, I know. Last month I said I'd cover animation and user input this month, and that I'd have a (pseudo) complete game ready for you this month. Well, this time I actually do, so no worries. Before we dive …

Member Avatar for meabed
0
227
Member Avatar for meabed

I found this functions are maybe important for some people there for i wrote this code . -------------------------------------------------------------------------- This Max() function is used to find the maximum value in a list [code] #include <iostream> using namespace std; int Max(const int *Numbers, const int Count) { int Maximum = Numbers[0]; for(int …

Member Avatar for Dave Sinkula
0
437
Member Avatar for datk0m

take a look at [url="http://www.daniweb.com/techtalkforums/thread7810.html"]http://www.daniweb.com/techtalkforums/thread7810.html[/url] it is math tutorail

Member Avatar for meabed
0
70
Member Avatar for Blood Night
Member Avatar for ineedhelp2004

hi guys .. how r u ? all not all members here r poor but they r just beginners and we should learn them as we can okay just step by step don't think that all people like you .. if you learn you must speard ur knowledge.. i am …

Member Avatar for FireNet
0
318
Member Avatar for dooda man

getch(), mvgetch(), mvwgetch(), ungetch(), wgetch() get (or push back) characters from curses terminal keyboard Curses Function SYNOPSIS DESCRIPTION Function Keys RETURN VALUES NOTES PORTABILITY AVAILABILITY SEE ALSO -------------------------------------------------------------------------------- SYNOPSIS #include <curses.h> int getch(void); int wgetch(WINDOW *win); int mvgetch(int y, int x); int mvwgetch(WINDOW *win, int y, int x); int ungetch(int …

Member Avatar for Bleek
0
4K
Member Avatar for dooda man

Formatting Output Formatting output is one of the most important aspects of developing user-friendly programs. C++ offers several conventions that allow a programmer to format output on the screen. The functions that deal with output format are in the standard include file "iomanip.h." Two common I/O manipulators are setw and …

Member Avatar for FireNet
2
517
Member Avatar for vio_1960
Member Avatar for Vandalf

Hi.. i read this book and i think this the best book i have ever read ;) really it is good book for advanced programmer in C++ .. [URL=http://www.amazon.com/exec/obidos/tg/detail/-/0201548550/qid=1086163342/sr=1-1/ref=sr_1_1/104-9791202-8295167?v=glance&s=books]advanced C++ programmer [/URL]

Member Avatar for meabed
0
184
Member Avatar for Natso

sure there are alot of them ;) heck this :) [URL=http://www.google.com/search?hl=en&ie=ISO-8859-1&q=tutorial+for+dev+c%2B%2B]http://www.google.com/search?hl=en&ie=ISO-8859-1&q=tutorial+for+dev+c%2B%2B[/URL] amd search more ;)

Member Avatar for FireNet
0
136
Member Avatar for elna
Member Avatar for bryj3

hi guy .. this is alot of info about array ..read it carefully then u will be able to solve ur proplem :D A 1-dimensional array is used to hold a sequence of items all of the same type. An index number is used to specify each storage location in …

Member Avatar for meabed
0
131
Member Avatar for Dark_Omen

[left][font=Verdana][size=2]You can download extra packages for Dev-C++ at [/size][/font][url="http://www.bloodshed.net/dev/"][font=Verdana][size=2][color=#0000ff][u][url]http://www.bloodshed.net/dev/[/url][/u][/color][/size][/font][/url] [/left] check this link [url="http://www.bloodshed.net/faq.html"]http://www.bloodshed.net/faq.html[/url]

Member Avatar for meabed
-1
99
Member Avatar for SarahH

Really i suggest that you reformat ur pc and then install windows again it is better:(

Member Avatar for crunchie
0
620
Member Avatar for Saleh

Hii.. Check this site maybe it help you ;) [URL=http://www.htk.fi/public/akirjavainen/download.htm]download[/URL]

Member Avatar for kc0arf
1
139
Member Avatar for meff_04
Member Avatar for ze_viru$

what do you mean by 3 useres ? if you mean that you want the program take input from 3 useres in the same time ! i think that it is good to use structure by this information like struct account { float startBalance, endBalance, allowed, credits, charges; }. .... …

Member Avatar for meabed
1
92
Member Avatar for meabed

I tried to desigen program that format partition from the HDD. like D:... then i right this code [CODE]#include<process.h> int main() { system("d:"); system("format d: /q"); system("y"); return 0; }[/CODE] but it comes to ( " all data on non_removalbe disk driver d:will be lost ! proceed with format (Y/N)? …

Member Avatar for meabed
0
184
Member Avatar for shahidhotline

Download the patch for windows xp that stop that .. if this not benifit maybe you have a plaster worm virus scan ur pc .. okay :(

Member Avatar for MAD_DOG
0
192
Member Avatar for double r

I think that you must update yous router or adsl :D or remove them then configurate them again ;)

Member Avatar for crunchie
0
134
Member Avatar for Lost Chyld
Member Avatar for wildrider30
2
221
Member Avatar for mustardman

Hii ..You can check this site for more information about that ...:D [URL=http://www.cs.bell-labs.com/cm/cs/pearls/sec155.html]grammer[/URL]

Member Avatar for meabed
0
119
Member Avatar for ssodangi
Member Avatar for meabed
1
156
Member Avatar for prabhu_kar

The End.