Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #16.0K
Ranked #3K
~4K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

8 Posted Topics

Member Avatar for GnnG

Hi, Video, streaming media data, and even capture is easily done (at least on the Linux platform) using the gstreamer framework. It's very easy to use. Please visit [url]http://www.gstreamer.net/[/url]

Member Avatar for sarathbandaru
0
2K
Member Avatar for hq1

You should initialize your variables before using them on the left side of an assignment. eg. total_purchase += purchase; is in fact total_purchase = total_purchase + purchase; and total_purchase does not have a value in the addition.

Member Avatar for hq1
0
285
Member Avatar for Stefano Mtangoo

A general solution is to use a class library such as Qt4 available from [url]http://qt.nokia.com/[/url]. Here you'll find general classes for accessing all major RDBMS's (Oracle, MySQl, SQlite etc...). Qt is great... Specifically for Oracle, a more difficult, but high performance method is the OCI or OCCI API available from …

Member Avatar for Stefano Mtangoo
0
149
Member Avatar for sahil1991

You are not allocating any space for the name var in your person class. Change : char* name; public: void get() to: char name[80] public: void get()

Member Avatar for fmadsen
0
114
Member Avatar for bookmark

In the first one, in the forward declaration of print s is declares as a const string... (might be the problem)

Member Avatar for alaa sam
0
153
Member Avatar for lochnessmonster

It's a matter of style, and of cause you should code with style :) In an object oriented environment you want to encapsulate the logic in a class and only expose to the outside world, what they really need to know to use the class, no more. So in my …

Member Avatar for mike_2000_17
0
321
Member Avatar for Tellalca

Well, you should not delete what you have not created :) delete is is for objects created on the heap with new. So simply remove the delete statement.

Member Avatar for Tellalca
0
1K
Member Avatar for samsons17

Hi, What nodeType *first=buildBackward(); does is to : 1. Declare a variable 'first' of type, pointer to nodeType. 2. call buildBackward() to build the linked list 3. And finally a pointer to the first node in the linked list is returned and assigned to the pointer variable 'first'.

Member Avatar for fmadsen
0
118

The End.