No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Re: Hello Iana264, I should go to right places, for example, http://www.keil.com/download/docs/188.asp and http://www.engineersgarage.com/tutorials/interrupts-8051-interrupt-programming?page=6 Regards, | |
Re: Hello Celina1234, Your problem is identical to the issue that described here I think, http://stackoverflow.com/questions/18215325/how-to-read-from-text-file-and-store-in-matrix-in-c Try to read the data correctly first, then you can manipulate them later on. Good luck! | |
Re: Hi, You should check length of string by using strlen(argv[i]), then calculate size of first, second, and so on, that is N = (strlen(argv[i]) + 1). Okay, now you can allocate room for the string: first = (char *)malloc(sizeof(char) * N); Check the allocating is okay then copy string from … | |
Hello everyone, I am from Vietnam, but I am working in Taiwan now. I come here just want to learn some and share some and getting to know all of you. Edward | |
Re: Is it neccessary? Even if so, we might help if you should try first. Nevertheless, what is your OS? On Linux, it is straight, but on Windows, you should install mingw (http://www.mingw.org/) and POSIX Threads for Win32 (http://www.sourceware.org/pthreads-win32/). Here is an example of how to use pthread, http://timmurphy.org/2010/05/04/pthreads-in-c-a-minimal-working-example/ Hope this … | |
Re: Hi shadowplayer28, I do not know why you gave the title like that. But this program can be fixed I think. I see you can the function transaction(), but I cannot see it in the decleration part, like this, public: void transaction(); And where the functin is implemented. Correct: public: … | |
Re: Hi nitish.mohiputlall, It is better if you declare pointer variables then do "dynamically allocated array". For 1D array: char *array //create 1D array array = new char[size] //use 1D array // delete 1D array delete [] array For 2D array, similarly: //create 2D array char **array = new *char[ROWS]; for( … | |
Re: Hi cavin.gm, Even I may not help you, but if you still have no idea. Here is one you can refer to, https://www.softintegration.com/products/toolkit/mechanism/ Hopefully, it can help you. |
The End.