User profile: Glandy

User info
User name:Glandy
History
Joined:
Number of posts:75
Latest posts:

Unhandled Exception issues MS 2010
Hey, Have you checked what sizeof(Numbuff) actually returns? => It's the actual size in bytes of yo...

Double Linked List handling problems
[code]for (current = current->next; current != NULL; current = current->next) { if (current->F ...

Multithreading--Semaphores
[code]if(pthread_join(tid1, NULL)) /* wait for the thread 1 to finish */[/code] You already have it...

Basic Calculator program help!!
Ya of course it doesn't make sense to use sizeof there at all. But that should be something he has t...

Basic Calculator program help!!
to add to MiiNiPaas findings: remember at compile-time the function "processEquation" has no idea a...