Do you mean logical or bitwise? Logically, both inputs are TRUE so the output would also be TRUE, typically represented as -1, i.e. "1111", but...
Visual Studio uses something called precompiled headers. It speeds up compiling time. To use it you have to (a) ensure using precompiled headers...
Such as what kind of help? You're going to have to tell us what you want - we cannot read your mind.
> please send your reply to Sorry, that doesn't work here. You post here, you read your answer here. > Posts: 1 Ah, I see. At a guess you're...
arr doesn't store strings. It's of type char*, so it stores pointers only. If you want to store char data, you need a char array, not a pointer...
Seems simple enough. Where exactly are you stuck? Do you understand the requirements? Have you determined a suitable data structure yet?...
Posting duplicate threads is a good way to get banned. You've been warned; don't do it again. http://www.go4expert.com/showthread.php?t=22604
Sounds reasonably straight forward (when you've ploughed through the unnecessarily overcomplicated jargon). Where are you stuck? Do you...
I would disagree that AV software is architecturally very difficult. All it needs to do is to check every file on the system against every virus...
I don't understand your question. Do you have some code to debug?
buff[0]=(my_byte & 0xff)>>8; OK, so what value do you think XY will have if you zero out X then shift it right by 8 bits (thus obliterating Y)?...
No idea. The program exhibits undefined behaviour. You must malloc the amount of memory you need. malloc(0), if it does anything, returns a...
Your tutors may be able to advise on relevant projects. What are your interests? Can you write some software to help others with similar...
Sorry, we don't do homework here. You'll have to go somewhere else. If you want some help writing the code, that's different. What have you...
Because that's what the post-increment operator means. p++ means take the value of p THEN increment it, and the timing of the increment is...
http://lmgtfy.com/?q=pic+bluetooth
How exactly is it "not recognising" it? Do you get an error? Does it exist on your system? If so, where? You include it with #include "occi.h",...
What errors? Which compiler, OS?
yep, there you go. gcc is a compiler: google it for more info. "gcc filename.c -o filename" compiles and links in one step to produce the...
What do you do between editing and running? There'll be a :w to save the file of course, but then what? (I assume we're talking about vim as "vi...
Separate names with a comma.