Assignment: Read in info from text file (done) Retrieve only parts of text file using substr method (done)
I have several large tables in my program, and I\'m trying to write a class to provide a generic interface with these tables. Each table is in its own header file, and contains a const double array an
I am creating a linked list program in C and I keep on getting a segmentation fault.I\'ve narrowed the problem down to a few lines of code and I believe i开发者_如何学Pythont has to do with checking f
I have some code that I am retrofitting to use an alloc开发者_如何学运维ator instead of operator new and operator delete directly.One part of this code\'s public interface is to return not a bald poin
I am trying to write a linked list program in C, however I keep on getting an initalization from incompatible pointer type warning/error.How do I get rid of this?And could you explain what is wrong?Wh
How do I deallocate this type of 3D array in c++? I have a class that has a int*** volume as a member and I filled it this way..
I\'m trying to implement a simple LinkedList The following开发者_运维问答 code, producing this error:
#include \"stdio.h\" #include \"malloc.h\" int main() { 开发者_开发百科char*x=(char*)malloc(1024);
I\'m new to Objective-C and need help with the concept of pointers. I\'ve written this code: //myArray is of type NSMutableArray
char* clean_string (char *input_string){ /*Ensure that input string isn\'t null and only do heavy lifting if it\'s not null*/