Tagged Questions
5
votes
4answers
129 views
Distinguish between string and byte array?
I have a lot of functions that expect a string as argument, for which I use char*, but all my functions that expect a byte-array, also use char*.
The problem is that I can easily make the mistake of ...
1
vote
1answer
45 views
How can I convert a string to an array of chars?
So I want to get a string into an array of characters, but the thing is i need to define the array length before i can get chars into it but i dont know what the length would be because it depends on ...
1
vote
3answers
2k views
Split C string into tokens using sscanf
I'm trying to split a string into tokens but somewhat recursively. I am trying to parse:
"content=0&website=Google"
so that I have a way to take out the parameters and values. If I try strtok I ...
0
votes
7answers
853 views
compare two equal array in c but output shows unequal
After a long break,I am back to C but getting confused even on some simple issues.
So one is here.
Here is the simple code :
#include<stdio.h>
int main() {
char str1[]="hello";
...
11
votes
4answers
349 views
In C, are const variables guaranteed to be distinct in memory?
Speaking of string literals, the C99 standard says (6.4.5.6):
It is unspecified whether these arrays are distinct provided their elements have the appropriate values. If the program attempts to ...
3
votes
2answers
244 views
Writing string to file that is over 4095 characters long
I am building a distributed messaging system for users to send messages to each other on different linux terminals. The scenario that I am looking at for my question is when I try to write a string to ...
3
votes
2answers
359 views
C99 Macro to build a quoted string literal after evaluation
I'm developing an embedded application in C99, and the project contains some integer constants defined like:
#define LEVEL1 0x0000
#define LEVEL2 (LEVEL1 + 1)
It has since become useful to ...
14
votes
4answers
2k views
Literal string initializer for a character array
In the following rules for the case when array decays to pointer:
An lvalue [see question 2.5] of type array-of-T which appears in an expression decays (with three exceptions) into a pointer to ...
5
votes
3answers
5k views
How to portably convert a string into an uncommon integer type?
Some background: If I wanted to use for, for instance, scanf() to convert a string into a standard integer type, like uint16_t, I’d use SCNu16 from <inttypes.h>, like this:
#include ...