Dear friend, I suggest you to kindly enter your details in the group's database. Its available at the following link... ...
Programmers-Town@yaho...
Nov 1, 2007 1:06 pm
11860
Dear members , Our group's main motive is to sharing knowledge & experinces of each other, solving each others technical problem. Please follow the following...
Programmers-Town@yaho...
Nov 1, 2007 1:06 pm
11861
Friends those who work on EAP server who r femiliar with the links to the C code for this server application could help me .........please me the code if...
File : Annoncement.doc Description : Plan for Programmers-town.edu...
Programmers-Town@yaho...
Nov 4, 2007 1:21 pm
11863
Friends, If you are/were geting too many mails, you can change your membership to one of the following. 1. Daily Digest : you l get only one mail per day (no...
Programmers-Town@yaho...
Nov 4, 2007 1:21 pm
11864
Dear members , Our group's main motive is to sharing knowledge & experinces of each other, solving each others technical problem. Please follow the following...
Programmers-Town@yaho...
Nov 4, 2007 1:21 pm
11865
All, I have always believed that the best way of learning (AFAIK programming or any implementation ) is to implement an example so that you face all the issues...
Bhasker C V
bhasker@...
Nov 4, 2007 2:34 pm
11866
Hello All, With a growing demand for System Professionals, we are pleased to announce a new weekend batch of Advance C for working professionals, Engineers &...
Hello All, Linux System and Device Driver Programming training is one of flagship training solutions offered by Concepts Systems. This training has become...
hi everyone! i am new in this group and i am new student too.now my question is is there any different between access,oracle and sql if there is not any...
... (SQL isn't a product - it's a language used within some databases. I'll assume you meant MySQL...) Depends. Seriously. They are different in that they are...
Hello Junta can anybody please let me know the solution to this problems in C or C++ 1.) write a function to invert 10th Bit of the Integer?? 2.) Write a...
Saurabh Gupta
saurabh444@...
Nov 5, 2007 5:02 pm
11871
... x^=(1<<10); ... x^=0x55555555; (Assuming a 4 byte integer.) See http://en.wikipedia.org/wiki/Bit_manipulation#Common_bit_manipulation_techniques for some...
Hi, I would guess you can do it easily using the concept of union in C,C++. Map our integer to an character array of 32 bits (Considering your integer is 32...
Thanks Paul !! ... [Non-text portions of this message have been removed]...
Saurabh Gupta
saurabh444@...
Nov 6, 2007 3:30 pm
11874
... Total overkill IMO. A struct (not a union) mapping an integer to bits is only useful if you need to access the bits by 'name' (memory mapped I/O for...
Hello Can any body Please let me know . how to extract unique elements from a sorted list of array. e.g. (1, 1, 3, 3, 3, 5, 5, 5, 9, 9, 9, 9) -> (1, 3, 5, 9).....
Saurabh Gupta
saurabh444@...
Nov 6, 2007 5:09 pm
11876
Please show your solution. Mickey M. Construction Partner Inc. http://www.constructionpartner.com ... From: Saurabh Gupta <saurabh444@...> To:...
One of my best clients in Waltham, Massachusetts is seeking a talented Senior Software Engineer. This is a full-time salary position with full benefits. Great...
Hi Mickey M solution is #include <iostream> #include <vector> using namespace std; int main() { vector<int> vin,vout; vin.push_back(106); vin.push_back(45); ...
Saurabh Gupta
saurabh444@...
Nov 11, 2007 5:36 pm
11879
//Find the unique elements unique(vin.begin(), vin.end()); Mickey M. Construction Partner Inc. http://www.constructionpartner.com ... From: Saurabh Gupta...
Hello Mike If we have to do it without using Unique algorithm than is there any way to do it . Thanks Mohit...
Saurabh Gupta
saurabh444@...
Nov 14, 2007 1:28 pm
11881
Hi, Try to create a binary tree with the list so that duplicate element are not inserted. And just make a inorder traversal. Thanks, Mrinmoy ... From: Saurabh...
File : Annoncement.doc Description : Plan for Programmers-town.edu...
Programmers-Town@yaho...
Nov 18, 2007 2:23 pm
11883
Dear members , Our group's main motive is to sharing knowledge & experinces of each other, solving each others technical problem. Please follow the following...
Programmers-Town@yaho...
Nov 18, 2007 2:23 pm
11884
Friends, If you are/were geting too many mails, you can change your membership to one of the following. 1. Daily Digest : you l get only one mail per day (no...
Programmers-Town@yaho...
Nov 18, 2007 2:23 pm
11885
Hi Greetings. We are currently recruiting 8 nos. TEAM LEADS/TECH. LEADS in Microsoft Technology (VC++, MFC, COM) on behalf of our US MNC client to fill up...
Hello Can anybody Please throw some light whether we can have template functions as virtual in C++?? Thanks Mohit...
Saurabh Gupta
saurabh444@...
Nov 24, 2007 8:34 pm
11887
Hi, I want to write an image file(big file having 200000 characters and numbers - bunny.ply)into the buffer. So which data type should I use,which can handle...
No we cannot have template functions as virtual in C++. however we can have a virtual function in Template class. This function should not use the template...