User profile: jdd

User info
User name:jdd
History
Joined:
Number of posts:95
Latest posts:

Typecasting with signed datatypes
Thanks, that makes perfect sense.

Typecasting with signed datatypes
I ran into some trouble with a piece of code. It is supposed to read a 16 bit signed integer over I...

Variable type for both int and char
An unsigned char can be 0-255. It does not store an 8 bit character representing the single numeric...

Variable type for both int and char
char is an integer type, so you can use a char in any situation where you can use an int. Of course...

Palindrome
In response to your new question, you are doing a couple of suspicious things in your code. First, ...