2
votes
2answers
63 views
How to test a byte against a hex value?
I want to test if the byte I read from a data file is 0xEE, what should I do? I tried if (aChar == 0xEE) but doesn't seems working. thanks for any help
0
votes
2answers
63 views
C sending multiple data types using sendto
In my program I have a few structs and a char array that I want to send as a single entity over UDP.
I am struggling to think of a good way to do this.
My first thought was to cr …
1
vote
5answers
168 views
C++ convert int and string to char*
This is a little hard I can't figure it out.
I have an int and a string that I need to store it as a char*, the int must be in hex
i.e.
int a = 31;
string str = "a number";
I …
0
votes
3answers
99 views
Why I can’t pass two chars as function arguments in C?
I have a function:
int get_symbol(tab *tp, FILE *fp, char delim)
and I call it like this:
get_symbol(tp, fp, ';')
I always have it declared in the header as:
int get_symbol( …
6
votes
8answers
294 views
What is the difference between char s[] and char *s in C?
In C, I can do like this:
char s[]="hello"; or char *s ="hello";
so i wonder what is the difference? I want to know what actually happen in memory allocation during compile time …
0
votes
3answers
28 views
find Char width in pixels for various Arial fontsizes
Hi,
I have a program that is manually generating a pdf using PDFSharp in C#. Although it is rather tedious I have to use it and am nearing completion of the task. Only one issue r …
-4
votes
0answers
150 views
c++ stack using char [closed]
if i have this record using val = int
struct Istack {
int val;
Istack *link;
};
typedef Istack* stack;
i can declare this function without any errors
void emptyStack(stack …
1
vote
5answers
131 views
Casting const void pointer to array of const char pointers properly in C.
I have a piece of C code that looks like this:
const char (*foo)[2] = bar();
Now bar() is a function that returns a (const void *). How do I properly cast this const pointer? Th …
0
votes
4answers
77 views
initializer-string for array of chars is too long
I keep getting this error: initializer-string for array of chars is too long
Even if I change num and length to 1, it still gets the error:
#include <iostream>
#include < …
2
votes
3answers
89 views
C Strings Library
Is there a C strings library for C (not C++) that implements an abstraction over char * and wchar_t * strings?
The requirements are:
to be BSD/MIT/CDDL licenced
implements some …
1
vote
3answers
169 views
char* pointer from string in C#
Is it possible to get a char* for a string variable in C#?
I need to convert a path string to a char* for using some native win32 function ...
4
votes
3answers
110 views
Should this char be unsigned?
I found some confusing code during code review and am a bit puzzled. Doing some research I found this situation. I wrote this sample of code to highlight the problem
char d = '©'; …
1
vote
1answer
28 views
NHibernate: Support for Char Columns in Oracle
I am using NHibernate against a legacy database which uses Char column types (fixed Strings). I am mapping the char columns to strings in properties. Currently my criteria queries …
0
votes
3answers
108 views
Java add chars to a string
I have two strings in a java program, which I want to mix in a certain way to form two new strings. To do this I have to pick up some constituent chars from each string and add the …
1
vote
7answers
177 views
Cleaner pointer arithmetic syntax for manipulation with byte offsets
In the following lines of code, I need to adjust the pointer pm by an offset in bytes in one of its fields. Is there an better/easier way to do this, than incessantly casting back …
