|
Big Bertha Thing letter Big Bertha Thing letter Cosmic Ray Series Possible Real World System Constructs http://www.tonylance.talktalk.net/letter.html 4K Web Page Astrophysics net ring Access site Newsgroup Reviews including sci.physics.particle Letter to a friend explaining Pastures and quest. From Pastures Software Package Docum... 3 Apr 2008 11:43
Runtime detection of structure member I am working on a project where i have to do same processing for all the members of the structure. The problem is the struct is very huge (with about 20 ints) and i have to write the specific function to each structure member. I am a java programmer also , java has a concept called reflection which helps to ex... 3 Apr 2008 08:53
Large integers in C++ I am writing a program that deals with large integers: more than 8 digits. Eventually, I hope to use integers with about 100 digits. So far, I have tried using long and unsigned long as the variable type. However, the results of calculations become inaccurate when integers with 9 or more digits are used. The... 11 Apr 2008 14:17
very newbie question about object creation count It is correct behavious. Destructor should not be called the you have done. Because this is called automatically when the objects are out of scope. Hence in your case the destructor is called twice and hence -ve value "john" <johnmortal.forums(a)gmail.com> wrote in message news:013640bf-6ec0-4a5a-a879-3c033ecfc4... 31 Mar 2008 19:19
urgent help Respected sir, i am student from india currently working on project which requires some .cc files and i have downloaded and working on them .. now when i m trying to compile the code it says few errors like invalid conversion from `unsigned char*' to `char*' invalid conversion from 'char* to unsigned char*' its... 31 Mar 2008 18:38
assigmnet operator when class data members are immutable Hello, I have a class whose data members are constant. So, default assignment will not happen. I am trying to write and assignment operator method that will allow assignment. I think my assignment with the swap might be the right direction but I am currrently stumped. Can anyone help with this assignment... 31 Mar 2008 19:19
urgent help you are trying to assign unsigned char pointer to char pointer and vice a versa. typecast the pointer if you really want to assign like that -Vijay "mk" <mkcgphy(a)gmail.com> wrote in message news:3ba8b5c9-446c-40b3-bff3-7d1a92cc510b(a)p25g2000hsf.googlegroups.com... Respected sir, i am student from india c... 31 Mar 2008 17:56
do while loop with || Hi All, I have as part of my program the following do while loop to display a menu. char menuChoice; do { printf("Main Menu\n"); printf("a. Log in.\n"); printf("b. Create new profile.\n"); printf("q. Quit\n"); printf("> "); // Take action based on the user's choice. s... 1 Feb 2008 14:47
Segmentation fault :( I have this simple code that causes a seg. fault... help? #include <string> #include <iostream> using namespace std; int main(){ int num2, num1; char* keyGuess; for(num2 = 0; num2 <= 3; num2++) { for(num1 = 0; num1 <= 2; num1++) { sprintf (keyGuess,"%d%d", num1,num2); cout<< num2<< " ... 1 Feb 2008 08:06
replace a array with fixed size to a variable size (at runtime) Hi, I have a function (IOExchange) from a Hardware Vendor (it means not changeable). In all the code examples, parameter 6 is a array with fixed size e.g. float[10]. It must be 'a pointer to the users data puffer'. Now i want to have this parameter 6 changeable at runtime so i can't define a array with fixe... 1 Feb 2008 00:41 |