How to Convert an Int to String in C
Updated onbyAlan Morel
Table of Contents
In this post, we'll learn how to convert an integer to a string in C.
sprintf()
To convert an integer to a string, you can use the sprintf()
function in C.
Here's how to convert the int 12345
to the string "12345"
:
CLIKE#include <stdio.h>
int main() {
int number = 12345;
char string[5];
sprintf(string, "%d", number);
printf("%s\n", string);
}
The output will be the number converted to a string:
BASH12345
The sprintf()
function has this syntax:
CLIKEint sprintf(char *str, const char *format, ...)
It takes any value and prints it to a string. It is similar to the printf()
function except it doesn't print to the console but instead returns the string.
Leave us a message!
×
- Managing PHP Dependencies with Composer
- Create an RSS Reader in Node
- Git Tutorial: Learn how to use Version Control
- How to Serve Static Files with Nginx and Docker
- How to Set Up Cron Jobs in Linux
- How to deploy a .NET app using Docker
- Best Visual Studio Code Extensions for 2022
- How to deploy an Express app using Docker
- Using Puppeteer and Jest for End-to-End Testing
- Getting Started with Moment.js
- Using Push.js to Display Web Browser Notifications
- Setting Up Stylus CSS Preprocessor