The ones who are crazy enough to think they can change the world are the ones who do.
- Steve Jobs

Love Letter In C

How Programmer Propose

Here is an old fashioned programmer's heart that holds timeless love with someone. Thus programmer starts writting a program to propose someone with well fascinated love letter written in C programming

love letter in c

C Program - Love Letter

c-love-letter.c
#include <stdio.h>
#include<conio.h>
#include<string.h>
int main()
{
int i = 0;
char *arr = "Being a Programmer, I Encountered few bugs in my day-to-day life. I found its sooo hard to compile it without you as my header file. So will you marry me.";
while(i < strlen(arr))
{
getch();
printf("%c ", arr[i++]);
}
return 0;
}
Being a Programmer, I Encountered few bugs in my day-to-day life. I found its sooo hard to compile it without you as my header file. So will by marry me.

Note:

At First, the output screen looks empty. Once you start typing any keys in your keyboard, the lovely words in your love letter will be displayed irrespecting of user pressed keys.

Report Us

We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.

Report