Apr
16

C Formatter

04/16/2022 12:00 AM

C Beautifier Online


C Formatter helps to format unformatted or ugly C code and helps to save and share C language code.

What can you do with C Formatter?

  • It helps to beautify your C code.
  • This tool allows loading the C code URL to beautify. Click on the URL button, Enter URL and Submit.
  • This tool supports loading the C code file to beautify. Click on the Upload button and select File.
  • C Language Beautifier Online works well on Windows, MAC, Linux, Chrome, Firefox, Edge, and Safari.

Example of C

C language data

#include 
int main() {
    char s[] = "Health is Wealth";
    int i;

    for (i = 0; s[i] != '\0'; ++i);
    
    printf("Length of the string: %d", i);
    return 0;
}