Google Mail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
comp . lang . c++
This is a Usenet group - learn more
Find or start a Google Group about c++.
Group info
Language: English
Group categories:
Computers > Programming
More group info »
Active older topics
49 new of 49 - Mar 14
15 new of 15 - Mar 14
7 new of 7 - Mar 13
26 new of 26 - Mar 13
8 new of 8 - Mar 13
46 new of 46 - Mar 13
3 new of 3 - Mar 13
11 new of 11 - Mar 13
4 new of 4 - Mar 13
6 new of 6 - Mar 13
Related Groups
Technical discussion of the C++ language. (Moderated)
Low activity, Usenet
Discussion about C.
Low activity, Usenet
Discussion about C++ language, library, standards. (Moderated)
Low activity, Usenet
Discussions
View:  Topic list, Topic summary Topics 1 - 10 of 234769  Older »
Description: The object-oriented C++ language.
 

help to compile on openSuse 11.2 
  Hi could someone help me compile the vidflat application from: [link] Might be easy for a professional but for me...I'm on openSuse 11.2 Huge thanks Michael
By mickCyber  - 6:27am - 1 new of 1 message    

===Welcome to comp.lang.c++! Read this first. 
  Welcome to comp.lang.c++! Read this first. This post is intended to give the new reader an introduction to reading and posting in this newsgroup. We respectfully request that you read all the way through this post, as it helps make for a more pleasant and useful group for everyone. First of all, please keep in mind that comp.lang.c++ is a group for discussion... more »
By Shiva  - 5:30am - 1 new of 1 message    

Leaking Memory 
  Will this code leak memory? I hope I deleted the array correctly. ...using namespace std; int main() { //integers n and m represent the field //n is rows and m is columns int n = 5, m = 5; int** field = new int*[n]; for(int i = 0; i < m; i++) field[i] = new int[m]; for(int i = 0; i < n; i++)... more »
By volk  - 4:08am - 1 new of 1 message    

Should Singleton instance be destructed after its usage 
  The following question is NOT a homework problem. I am asking it for learning purpose only. Suppose I have a Singleton class and I have created an instance of the Singleton class. Now, after the usage of the Singleton instance, should the instance be deleted ? If it should be deleted, which of the following two versions of deleting the Singleton instance should be... more »
By subramanian100in@yahoo.co m, India  - 2:26am - 3 new of 3 messages    

Detect overflow by reading ALU's carryout 
  Hi all! I'm writing a piece of code that will cycle thousands of thousands of times. Within the cycle I perform an addition of two unsigned ints. I need to be able to read the carryout bit (signal or flag) from the CPU/ALU. I cannot use another math operation just to detect if there was an overflow, because timing for this algorithm is... more »
By Nando  - 12:48am - 3 new of 3 messages    

interesting pointer cast problem 
  There are several ways to build 2D array in C++. Usually I do it using following code: // ============================== ========== int rows = 10, columns = 10; int *array1d = new int[rows*columns]; int (*array2d)[columns] = reinterpret_cast<int (*)[columns]>(array1d); /* Now we can use array2d like this - array2d[i][j] */... more »
By Gerald  - 12:42am - 2 new of 2 messages    

is c++ requirement to cast pointers(like the one returned from malloc) redundant ? 
  To me, it seems so, since itīs the job of the operator that manipulates the pointer to know to what type the data in memory belongs. int *p=(int*)malloc(10*sizeof(int) ); Would the language be much worse of without the need for (int*) ? Rafael
By Rafael Anschau  - Mar 13 - 21 new of 21 messages    

Agile Methodology for Embedded Systems 
  One of the most popular methodologies of embedded software development is Agile methodology. It is widely used by software companies to develop embedded products based on requirements sent in by the client at different points of time. Here, different iterations of the embedded products are developed based on different sets of client... more »
By debra h  - Mar 13 - 2 new of 2 messages    

C++0x question: Range-based loop and auto 
  With the next standard it will become possible to write eg. for(int& value: someContainer) { someFunc(value); } However, would this be valid as well: for(auto& value: someContainer) { someFunc(value); } ? That would be useful if the element type is complicated or unknown. --- news://freenews.netfront.net/ - complaints: n...@netfront.net ---... more »
By Juha Nieminen  - Mar 13 - 6 new of 6 messages    

Converting CHAR_MAX+1 to char? 
  What happens in this case? char c = CHAR_MAX + 1; Not sure what happens. The spec only defines behavior for signed and unsigned integral types it seems. Is the behavior undefined?
By Johannes Schaub (litb)  - Mar 12 - 15 new of 15 messages    

1 - 10 of 234769   « Newer | Older »

XML      
Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2010 Google