Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags

8 Posted Topics

Member Avatar for Iana264

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,

Member Avatar for Edward_3
0
159
Member Avatar for celina1234

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!

Member Avatar for Edward_3
0
235
Member Avatar for Netcode

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 …

Member Avatar for deceptikon
0
206
Member Avatar for Edward_3

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

Member Avatar for Nikolas9896
0
66
Member Avatar for Raghu Dev

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 …

Member Avatar for Edward_3
0
149
Member Avatar for shadowplayer28

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: …

Member Avatar for Schol-R-LEA
0
325
Member Avatar for nitish.mohiputlall

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( …

Member Avatar for Edward_3
0
181
Member Avatar for cavin.gm

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.

Member Avatar for Edward_3
0
782

The End.