fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. char yourName[] = "You";
  6. char myName[] = "Me";
  7.  
  8. int daysTogether = 5 * 30; // ครบรอบ 5 เดือน โดยประมาณ
  9.  
  10. printf("Hi %s 💖\n", pond);
  11. printf("It's been %d days since we started this beautiful journey together.\n", daysTogether);
  12. printf("%s + %s = 💕 Forever\n", myName, yourName);
  13.  
  14. char loveMessage[] = "I love you more than code!";
  15. for(int i = 0; i < strlen(loveMessage); i++) {
  16. printf("%c", loveMessage[i]);
  17. }
  18. printf("\n\nreturn 0 (but my heart always returns to you ❤️);\n");
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0.04s 25912KB
stdin
Standard input is empty
stdout
#include <stdio.h>
#include <string.h>

int main() {
    char yourName[] = "You";
    char myName[] = "Me";

    int daysTogether = 5 * 30; // ครบรอบ 5 เดือน โดยประมาณ

    printf("Hi %s 💖\n", pond);
    printf("It's been %d days since we started this beautiful journey together.\n", daysTogether);
    printf("%s + %s = 💕 Forever\n", myName, yourName);

    char loveMessage[] = "I love you more than code!";
    for(int i = 0; i < strlen(loveMessage); i++) {
        printf("%c", loveMessage[i]);
    }
    printf("\n\nreturn 0 (but my heart always returns to you ❤️);\n");

    return 0;
}