112 Posted Topics
Re: Use Loop to deal with names , and Ascii to convert the first letter to capital one | |
Re: :) hey man we dont so assignment for students you must learn then do efforts then we can help you .. | |
Re: check this link :D [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDrawingPrintingPrinterSettingsPropertiesTopic.asp[/url] | |
Re: 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 { … | |
Re: 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 == … | |
Re: yeah .. nice site .:D but i hope if it is for C++ | |
Re: See "C++ exception handling "in C++ tutorial | |
Re: 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;. … | |
Re: [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] | |
Re: 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 | |
Re: 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 … | |
Re: 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. | |
Re: 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] | |
Re: 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; }; … | |
Re: _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 … | |
Re: 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 … | |
Re: i think that u can see this link VB | |
Re: [url]http://www.cis.temple.edu/~jfiore/tutorials.html#telephone[/url] check this tutorial it is very good | |
Re: Check this link .. .:) [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_ccombobox_class_members.asp[/url] | |
Re: 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 … | |
[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 … | |
Re: [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; } … | |
Re: [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 … | |
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 … | |
Re: take a look at [url="http://www.daniweb.com/techtalkforums/thread7810.html"]http://www.daniweb.com/techtalkforums/thread7810.html[/url] it is math tutorail | |
Re: I Donno .. Is this realted to C++ ??? :?: | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
| |
Re: 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] | |
Re: 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 ;) | |
Re: whta is the program about? plz post it in like code;) | |
Re: 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 … | |
Re: [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] | |
Re: Really i suggest that you reformat ur pc and then install windows again it is better:( | |
Re: Hii.. Check this site maybe it help you ;) [URL=http://www.htk.fi/public/akirjavainen/download.htm]download[/URL] | |
Re: 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; }. .... … | |
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)? … | |
Re: Download the patch for windows xp that stop that .. if this not benifit maybe you have a plaster worm virus scan ur pc .. okay :( | |
Re: I think that you must update yous router or adsl :D or remove them then configurate them again ;) | |
Re: thnx guys but is there any anther way to do that without <cstdlib>? | |
Re: 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] | |
Re: You Can read Opject riented prgramming C++ it is good book ;) | |
Re: This Right YOu can't do that coz C is subset of C++ ... |
The End.