Tagged Questions
2
votes
1answer
106 views
Send chars with UDP
I'm trying to send text with UDP, by sending every character separately, but something seems to be wrong.
This is the client:
while(strcmp(sir,"0")!=0)
{
printf("Text number %d:", i);
i++;
...
2
votes
8answers
1k views
significance of negative values of type char in C
chars in 'C' are used to represent characters.
Numbers representing characters in all code pages are always positive.
What is the use of having signed characters?? Are negative values contained in ...
1
vote
7answers
74 views
C langugage - “Weird” characters in char[] output
I had to build a C program which convert's infix notation into postfix notation using STACK. That went well and it's working in some way. It was long ago when I used last time C language so I'm ...
1
vote
2answers
91 views
Curious trigraph sequence thing about ansi C
What was is it the original reason to use trigraph sequence of some chars to become other chars in ansi C like:
??=define arraycheck(a, b) a??(b??) ??!??! b??(a??)
becomes
#define arraycheck(a, b) ...
1
vote
1answer
33 views
Advice on solving UD in low level management functions
I'm fairly new to C and have started out writing a small library with functionality to get length of strings, reversing strings, converting binary data in char buffers to ints and shorts. Just for the ...
1
vote
3answers
370 views
Return a pointer to a char array in C
I've seen a lot of questions on that on StackOverflow, but reading the answers did not clear that up for me, probably because I'm a total newbie in C programming. Here's the code:
#include ...
0
votes
3answers
65 views
converting integers to chars in C(according to ASCII table)
been searching everywhere, but couldn't the correct answer.
the problem is pretty simple:
i have to convert ASCII integer values into char's.
for example, according to ASCII table, 108 stands for ...
0
votes
7answers
1k views
How to convert from integer to unsigned char in C, given integers larger than 256?
As part of my CS course I've been given some functions to use. One of these functions takes a pointer to unsigned chars to write some data to a file (I have to use this function, so I can't just make ...