char*
and char[]
are different types, but it’s not immediately apparent in all cases. This is because arrays decay into pointers, meaning that if an expression of type char[]
is provided where one of type char*
is expected, the compiler automatically converts the array into a pointer to its first element.
Your example function printSomething
expects a pointer, so if you try to pass an array to it like this:
char s[10] = "hello"; printSomething(s);
The compiler pretends that you wrote this:
char s[10] = "hello"; printSomething(&s[0]);
Related Posts:
- char *array and char array[]
- C pointers and arrays: [Warning] assignment makes pointer from integer without a cast
- The difference between char * and char[] [duplicate]
- How do I determine the size of my array in C?
- Pointer Arithmetic
- How do I create an array of strings in C?
- “Expected expression before ‘ { ‘ token”
- 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]
- Difference between char* and const char*?
- Why am I getting “array initializer must be an initializer list or string literal”?
- What does ** do in C language?
- #31 expression must have integral type
- How do you pass a function as a parameter in C?
- Invalid pointer error on invoking free() after malloc in C
- Using Dynamic Memory allocation for arrays
- expression must have integral type
- How to make an array with a dynamic size? General usage of dynamic arrays (maybe pointers too)?
- Finding the length of a Character Array in C
- What’s wrong with my code? What is argv[1]?
- Return char[]/string from a function
- Valgrind: Invalid read of size 1
- How to print a char array in C through printf?
- How to clear all the elements of array in C?
- Constant pointer vs Pointer to constant
- Reversing a string in C
- Zero an array in C code
- Passing an array by reference in C?
- Excess elements in char array initializer error
- Warning: return from incompatible pointer type in C
- strcmp giving segmentation fault
- Why am I getting this error: “data definition has no type or storage class”?
- Initialization from incompatible pointer type warning when assigning to a pointer
- I’m getting “Invalid Initializer”, what am I doing wrong?
- Returning an array using C
- Convert char array to string use C
- warning: passing argument ’from incompatible pointer type [enabled by default]’
- Iterate through a C array
- char pointers: invalid conversion from ‘char*’ to ‘char’?
- Excess elements of scalar initializer for pointer to array of ints
- typedef struct pointer definition
- Difference between char *argv[] and char **argv for the second argument to main()
- Warning: comparison of distinct pointer types
- Dereference void pointer
- Pointer to 2D arrays in C
- lvalue required as increment operand
- How big can a 64 bit unsigned integer be?
- The difference between n++ and ++n at the end of a while loop? (ANSI C)
- Implementing Taylor Series for sine and cosine in C
- Working on code to calculate cosine with factorial sum
- How to use execvp()
- How to use execvp() to execute a command
- How does strtok() split the string into tokens in C?
- warning: implicit declaration of function
- warning: implicit declaration of function
- What is *(uint32_t*)?
- pthread_join() and pthread_exit()
- what is Segmentation fault (core dumped)? [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?
- Two questions about basic C programs
- What is the difference between ++i and i++?
- Using boolean values in C
- What does “collect2: error: ld returned 1 exit status” mean?
- How to convert an int to string in C?
- typedef struct vs struct definitions [duplicate]
- How to print in C
- Why should we typedef a struct so often in C?
- Arrow operator (->) usage in C
- What is a string of hexadecimal digits?
- Why should we typedef a struct so often in C?
- What exactly is the difference between “pass by reference” in C and in C++?
- What is the difference between ++i and i++?
- What can be the reasons of connection refused errors?
- What does “collect2: error: ld returned 1 exit status” mean?
- How to convert an int to string in C?
- typedef struct vs struct definitions [duplicate]
- What is newline character — ‘\n’
- Why does ENOENT mean “No such file or directory”?
- What does the question mark character (‘?’) mean?
- Cannot figure out how to use getchar(); in C
- Floating point exception (core dumped)
- Undefined reference to pthread_create in Linux
- what is the difference between uint16_t and unsigned short int incase of 64 bit processor?
- makefile:4: *** missing separator. Stop
- Stack smashing detected
- Why am I getting “void value not ignored as it ought to be”?
- Correct format specifier for double in printf
- Return array in a function
- Stack smashing detected
- Why am I getting “void value not ignored as it ought to be”?
- dereferencing pointer to incomplete type
- 1 = false and 0 = true?
- c stack smashing detected
- What does “dereferencing” a pointer mean?
- Openssl : error “self signed certificate in certificate chain”
- How to convert a string to integer in C?