How to solve the implicitly declaring library function warning in C
New Courses Coming Soon
Join the waiting lists
Learn how to solve the implicitly declaring library function warning in C
When compiling a C program you might find that the compiler gives you a warning similar to
hello.c:6:3: warning: implicitly declaring library function
'printf' with type 'int (const char *, ...)'
[-Wimplicit-function-declaration]
printf("Name length: %u", length);
^
or
hello.c:5:16: warning: implicitly declaring library function
'strlen' with type 'unsigned long (const char *)'
[-Wimplicit-function-declaration]
int length = strlen(name);
^
This problem occurs because you used a function from the standard library without first including the appropriate header file.
The compiler will also give you a suggestion, like the following one:
hello.c:5:16: note: include the header <string.h> or
explicitly provide a declaration for 'strlen'
which points you in the right direction.
In this case, adding
#include <stdio.h>
at the top of the C file will solve the issue.
→ Get my C Handbook
Here is how can I help you:
- COURSES where I teach everything I know
- CODING BOOTCAMP cohort course - next edition in 2025
- THE VALLEY OF CODE your web development manual
- BOOKS 17 coding ebooks you can download for free on JS Python C PHP and lots more
- Interesting links collection
- Follow me on X