Monday, August 29, 2011

Create EID greetings in C Program

0 comments
Source Code: #include<stdio.h> #include<conio.h> #include<dos.h> #include<string.h> #include<stdlib.h> #define X 25 void main() {          int i,j,l,t,color=10,z;          char temp;          char* str="Eid Mubarak!";   /*You can change the text here what ever you want to print*/          clrscr();          gotoxy(X,X-1);          l=strlen(str);          clrscr();       ...
Continue reading →