Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~1K People Reached
Favorite Tags
c++ x 15
c x 2
Member Avatar for desijays

I know there is a way to represent binary, octal and hex values in C, but how do you do it? Like, say, if i wanted to specify a hex number i would do, unsigned char i = 0xFF; or unsigned char i = 0x32; What if i wanted to …

Member Avatar for Salem
0
77
Member Avatar for desijays

[code] class base { private: int i; void seti( int i_temp ) // :i(i_temp) ->Initializer List not working { i = i_temp; } public: base() { } base( int t ):seti( t ) { } }; [/code] error C2436: 'seti' : member function or nested class in constructor initializer list. …

Member Avatar for vijayan121
0
180
Member Avatar for m3an

its part of a dvd program. i want all the objects created and manipulated by the program to be stored in a dynamic array that might grow during the execution of the program. I want to program to store the info in a dynamic array that i can call anywhere …

Member Avatar for m3an
0
145
Member Avatar for desijays

how many simultaneous connections can i make from a normal desktop computer bought in the last 6 months using a broadband connection? Does that include both TCP and UDP connections? if not, then how many simultaneous TCP connections can i make using the afore mentioned computer and likewise how many …

Member Avatar for desijays
0
104
Member Avatar for desijays

Im looking for a network library for c++ cos Im planning to write a small network application. something along the lines of a port scanner. I would be interested in knowing which library most people use and what is recommended.

Member Avatar for desijays
0
129
Member Avatar for desijays

Im using VC++ express and usually i come across situations where i have to create more than one project within the solution. But the problem is that each time i create a new project inside the solution, i have to go to the new project's property pages to add the …

Member Avatar for Infarction
0
248
Member Avatar for satish.paluvai

Memory allocation of variables declared in a program is ------ a) Allocated in RAM b) Allocated in ROM c) Allocated in stack d) Assigned in registers. which one is correct please tell me the answer in 24 hrs...

Member Avatar for desijays
0
92
Member Avatar for desijays

i was just going through some source code and came across the directive [code] #pragma comment( lib, "irrlicht.lib" ); [/code] I got mixed and confusing answers when i read about it in the vc++ documentation. Could someone please explain clearly the purpose or necessity for such code? I do have …

Member Avatar for desijays
-1
157