User profile: cppbegin

User info
User name:cppbegin
Statistical data
Gender:Male
Occupation:Other
Skills:C
C++
Visual Basic
Java
AutoIT
PowerShell
History
Joined:
Number of posts:10
Latest posts:

Need help with Phone Number Program
@ToeKnee0x10: As far as I know your idea won't fit with c++ and dynamically reading in unknown data,...

Different header files for different OS
Thanks Giblit and Duoas for your input. @Giblit: Do I get you, if I say: You need to compile for dif...

c++ adding numbers to each line
Edit: Ahhh, getting tired... Should go for a sleep... [s]You could use the getline method of ifstrea...

How to define array which size is do not know yet
Excuse me? I didn't get your last statement. Did it work?

How to define array which size is do not know yet
Try the following code: [code]int len; cin>>len; int *array=new int[len];[/code] Replace all [i]int[...