You can store the size somewhere, or you can have a struct with a special value set that you use as a sentinel, the same way that \0
indicates the end of a string.
Related Posts:
- How do I determine the size of my array in C?
- char *array and char array[]
- How do I create an array of strings in C?
- “Expected expression before ‘ { ‘ token”
- C pointers and arrays: [Warning] assignment makes pointer from integer without a cast
- How to print the array?
- How do you make an array of structs in C?
- How do I create an array of strings in C?
- Return char[]/string from a function [duplicate]
- Why am I getting “array initializer must be an initializer list or string literal”?
- Using Dynamic Memory allocation for arrays
- Finding the length of a Character Array in C
- Return char[]/string from a function
- How to print a char array in C through printf?
- How to clear all the elements of array in C?
- Zero an array in C code
- Passing an array by reference in C?
- Excess elements in char array initializer error
- I’m getting “Invalid Initializer”, what am I doing wrong?
- Convert char array to string use C
- What is the difference between char array and char pointer in C?
- The difference between char * and char[] [duplicate]
- What causes a segmentation fault (core dump) to occur in C?
- uint8_t vs unsigned char
- How to use symbols of extended ASCII table in C?
- What is the difference between ++i and i++?
- Using boolean values in C
- What does “collect2: error: ld returned 1 exit status” mean?
- typedef struct vs struct definitions [duplicate]
- What can be the reasons of connection refused errors?
- typedef struct vs struct definitions [duplicate]
- Why am I getting “void value not ignored as it ought to be”?
- 1 = false and 0 = true?
- Get a substring of a char*
- What causes the Broken Pipe Error?
- Strings and character with printf
- Why does the terminal show “^[[A” “^[[B” “^[[C” “^[[D” when pressing the arrow keys in Ubuntu?
- Why is the gets function so dangerous that it should not be used?
- Write to .txt file?
- What does “collect2: error: ld returned 1 exit status” mean?
- Warning comparison between pointer and integer
- What does #pragma once mean in C? [duplicate]
- Connect: Socket operation on non-socket
- “Initializer element is not constant” in C
- How do you do exponentiation in C?
- Printing long int value in C
- Undefined reference to pow( ) in C, despite including math.h [duplicate]
- C read file line by line
- Try catch statements in C
- How to check if a string is a number?
- The difference between stdout and STDOUT_FILENO
- What does ** do in C language?
- where does stdio.o live in linux machine?
- How do I create an array of strings in C?
- Python ? (conditional/ternary) operator for assignments
- conflicting types error when compiling c program using gcc
- Get the current time in C
- What’s the difference between a file descriptor and file pointer?
- Cygwin – Makefile-error: recipe for target `main.o’ failed
- Why am I getting “undefined reference to sqrt” error even though I include math.h header?
- Why am I getting “undefined reference to sqrt” error even though I include math.h header?
- Expected declaration specifier error in function
- Multiple definition of … linker error
- Does sizeof return the number of bytes or the number of octets of a type in C?
- Encrypt with private key and decrypt with public key
- Warning: return from incompatible pointer type in C
- How to generate a random number between 0 and 1?
- How to properly malloc for array of struct in C
- C++ array assign error: invalid array assignment
- strcmp giving segmentation fault
- What does “pointer being freed was not allocated” mean exactly?
- Initialization from incompatible pointer type warning when assigning to a pointer
- How to use timer in C?
- Memory Clobbering Error
- Check if input is integer type in C
- Allocating string with malloc
- How to simply convert a float to a string in c?
- How to copy a char array in C?
- hash function for string
- What happens during a “relocation has invalid symbol index” error?
- Initializing array of structures
- Double pointer array in c++
- Can I create an Array of Char pointers in C?
- Error: “Access not within mapped region at address” (Valgrind)
- How to convert string to float?
- C char array initialization
- What is `S_ISREG()`, and what does it do?
- typedef struct pointer definition
- How does the fscanf function work?
- Math constant PI value in C
- char array not assignable
- Warning: comparison of distinct pointer types
- The code does not execute properly. Try to figure out why
- ld.exe: cannot open output file … : Permission denied
- How to read from input until newline is found using scanf()?
- getline() vs. fgets(): Control memory allocation
- Segmentation fault- strcat
- C: warning: excess elements in array initializer; near initialization for ‘xxx’ ; expects ‘char *’, but has type ‘int’
- Initializing 2D char array in C
- segmentation fault with strcpy [duplicate]