C Program : putchar() Example

 #include <stdio.h>

int main() { char message[] = "Hello, World!"; int i; for (i = 0; message[i] != '\0'; i++) { putchar(message[i]); } putchar('\n'); // Print a newline character return 0; }

Comments

Popular posts from this blog

Video Formats

Where video editing is used

File saving and folder management