Material
Dracula
Monokai
14px
16px
18px
20px
Format
C Online Compiler
Editor
Output
Fullscreen
// ✨ CoodeVerse C Compiler ✨ #include
#include
void repeat(char ch, int count) { for (int i = 0; i < count; i++) { putchar(ch); } putchar('\n'); } void centerText(const char *text, int width) { int len = strlen(text); int padding = (width - len) / 2; for (int i = 0; i < padding; i++) putchar(' '); printf("%s\n", text); } void welcome() { repeat('=', 60); centerText("🚀 Welcome to CoodeVerse C Compiler 🚀", 60); repeat('-', 60); centerText("", 60); repeat('=', 60); printf("\n"); } int main() { welcome(); return 0; }
Output:
Run Code
Clear Output
Save Code
Ready