Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #1K
~7K People Reached

28 Posted Topics

Member Avatar for Dannyo329

you can use either cin.getline (name, '\n'); orn declare a string name; insread of character array.

Member Avatar for Jamblaster
0
2K
Member Avatar for CPPRULZ

Hi CPPRULZ , Might be these links can give you the answers. 1) [url]http://www.codersource.net/cpp_copy_constructors.html[/url] 2) [url]http://www.daniweb.com/forums/thread38304.html[/url]

Member Avatar for CPPRULZ
0
123
Member Avatar for RenjithVR

Hi, In my Linux machine there are three NIC connected. Is it possible to add a primary DNS server and a secondary DNS server for each interface? Or all interface are configured through a single /etc/resolv.conf file? Thanks in advance. Renjith

Member Avatar for wldake
0
178
Member Avatar for RenjithVR

Hi All, Can anyone tell me about a library that helps me to read contents from /etc/resolv.conf file and also update the same file with new entries. Does this possible with Resolver library routines? Any useful links or sample programs regarding this? Thanks in advance. Renjith

Member Avatar for stephen84s
0
200
Member Avatar for RenjithVR

Hi all, I am using kubuntu 8.0. The following problems am facing, To stop a network we use /etc/init.d/networking stop - I can ping after stopping.(so it is not working.) Also anybody know how to replaced the gateway. I used the "route add" command but it is adding it to …

Member Avatar for BillBrown
0
136
Member Avatar for gargg321

Hi, Which software you need to install? But why do you looking to extract file from .bin? Which Linux flavour you are using? If you have any rpm file install it by using "rpm -ivh rpmname". Please more specific while posting... [QUOTE=gargg321;673840]Hi all, I have to install a software in …

Member Avatar for BillBrown
0
284
Member Avatar for RenjithVR

Hi, I am using kubuntu 8.0. In the init script "start-stop-daemon --stop --quiet -p $PID_FILE" used to stop a daemon. It is also specified at the top that PID_FILE="/var/run/daemon.pid". I can start daemon, but when i try to stop, it is not stopping. Also no .pid file is generated in …

Member Avatar for TheOgre
0
127
Member Avatar for raul15791

Replace your line 9 with "string Data[20];" also don't forget to comment line 34.

Member Avatar for raul15791
0
119
Member Avatar for RenjithVR

Hi, I have a webBrowser and a Button. When i clicked the button I want to display a URL. When it displayed the WebBrowser should be in fullscreen. How can do this? Thanks in advance. Renjith

Member Avatar for RenjithVR
0
188
Member Avatar for chickenlord500
Member Avatar for Sky Diploma
0
162
Member Avatar for brain

Try this, [code] #include <vector> #include<iostream> using namespace std; int main() { vector<const int*> v; return 0; } [/code]

Member Avatar for brain
0
300
Member Avatar for Agni

[url]http://www.computing.net/answers/programming/c-private-constructor-why/11546.html[/url]

Member Avatar for ash05
0
164
Member Avatar for faisaly
Re: C++

Refer the following link and try to do it by yourself 1, [url]http://www.cplusplus.com/doc/tutorial/templates.html[/url]

Member Avatar for RenjithVR
0
276
Member Avatar for FTProtocol
Member Avatar for prab

[url]http://linux.softpedia.com/get/Programming/Widgets/Qt-179.shtml[/url] Yoe can easily follow this by referring Qt assistant

Member Avatar for ninjaneer
0
628
Member Avatar for Member #359346

like this, [code] #include <iostream> #include <string> #include <sstream> using namespace std; int main() { int antnames; cout << "How many names do you want to put in the base : "; cin >> antnames; struct names { string namee; int age; }; names *details = new names[antnames]; string mystr; …

Member Avatar for Nick Evan
0
153
Member Avatar for Dannyo329
Member Avatar for integer*09

No. You are getting some garbage values. To avoid this make sure last content of the file is '\0'. simply write '\0' to end of the file.

Member Avatar for integer*09
0
182
Member Avatar for crioto

#include<iostream.h> main() { int t,n; cout<<"Enter a number:"; cin>>n; t=n%10; n=n/10; cout<<"is:"<<n; cout<<"is:"<<t; }

Member Avatar for crioto
0
94
Member Avatar for SteveDB

case '1' : int HipValley(int& Rise1, int& Rise2, double& Eave, float& a); what is this? int HipValley(int& Rise1, int& Rise2, double& Eave, float& a); is this a function call? If so no need to specify the return type. You can use HipValley( Rise1, Rise2, Eave, a); to call a function. …

Member Avatar for SteveDB
0
91
Member Avatar for pradhan.nc

This will work fine. You are getting and printing values to/from unallocated memory. You didn't get any garbage value because no other process intervening.

Member Avatar for Salem
0
163
Member Avatar for anuizath2007

Remove the semicolon after the loops. that is [code] #include<iostream.h> #include<conio.h> void main() { cout<<"\n\n\n\tPATTERN\n\n\n\t" ; for(int i=1; i<=9; i++) { cout<< endl; for (int j=1;j<=i; j++) cout<<i; } getch(); } [/code]

Member Avatar for Nick Evan
0
136
Member Avatar for allena
Member Avatar for lomo

use the following names = (string*)namesMore; instead of names = namesMore;

Member Avatar for lomo
0
83
Member Avatar for Haktivex

library for doing RSA encryption/decryption in c++? go to [url]http://www.cryptopp.com/[/url]

Member Avatar for RenjithVR
0
115
Member Avatar for WondererAbu

I think you are thinking about including a file in another file. Write a main function in one file and include the needed header files with that file. Also in each class include the header files they required. The below link will give you a small idea about this. [url]http://www.eventhelix.com/RealTimeMantra/HeaderFileIncludePatterns.htm[/url] …

Member Avatar for Cybulski
0
162
Member Avatar for shankhs

Hi, You cannot use try as a function name in c++, because try is a keyword in c++ used for exception handling. The following code should work. #include<iostream> #include<fstream> #include<vector> using namespace std; int i=5,j=8, n= 10; int (fn)(); int add() { int c=i+j; cout<<c; return c; } int sub() …

Member Avatar for RenjithVR
0
163
Member Avatar for RenjithVR

Hi , I am using openRTSP test program. In the make file i used debugg option. But when i tried to debugg for example : "b 320", i got the following error. No line 24 in file "init.c". I don't know about this error. But gdb is working fine. For …

Member Avatar for RenjithVR
0
138

The End.