Popular Posts

6/26/2012

The best trick to search in google .

Google is the biggest search engine in the world. It's store Billion of documents and more. Sometime you spend more time to search on Google but you don't get what you want from it.  So today I'll show you the best trick to search from Google like pdf file, exe file, and many other up to what you want.  Let follow my step:  Goto  Google.com In google search box type : intitle:index.of?.Extension...

6/25/2012

12 Expert Google Search Tips

If you’re like me, you probably use Google many times a day.  But, chances are, unless you are a technology geek, you probably still use Google in its simplest form.  If your current use of Google is limited to typing a few words in, and changing your query until you find what you’re looking for, then I’m here to tell you that there’s a better way – and it’s not hard to learn.  On the other hand, if you are a technology geek, and can use Google like the best of them already, then I suggest you bookmark this article of...

School Management System In C Programming

Welcome to School Management system Using C Programming Download Here And the following code : =========================================== #include<stdio.h> #include<conio.h> #include<string.h> #include<dos.h> struct student{ char id[10]; char name[20]; char sex; int math,eng,khmer; float avg; char grade[10]; char DOB[20]; }; char getG(int score){      if(score<50) return 'F';      else if(score<65) return 'E';      else if(score<75) return 'D';    ...

Hotel Management in C Programming

Welcome to Home Land Hotel Download Here  and the following code : ======================================= #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<string.h> typedef struct {int day; int month; int year; }date; struct customer{int id; char name[20]; date da_in; date da_out; int n_of_room; char room; int price; }cust[30],temp; int n,i,j,ID=0; int d,p,e; char a,b,c; int room; void check_in(); void check_out(); void edit(); void view(); void search(); void draw(); void...

Restaurant Management System in C Programming

Restaurant Management System - C implementation Royal University of Phnom Penh Computer Science Campus College of Computer Management and Information Technology A Partial Fulfillment of the Subject C Programming Download Here This is the source codes of Restaurant Management in C Programming : ============================================ #include<stdio.h> #include<conio.h> #include<string.h> #include<dos.h> #include<stdlib.h> #include<ctype.h> #include<string.h> #include<process.h> struct menurec{...

Election in Country C Programming

Download Here Code Here : ================================ #include<stdio.h> #include<conio.h> #include<dos.h> #include<stdlib.h>  void main()  { clrscr(); void run(); void draw(); gotoxy(27,3) ; printf("The Election in Country A"); gotoxy(7,10) ; printf("Party A"); gotoxy(26,10); printf("Party B"); gotoxy(46,10); printf("Party C"); gotoxy(65,10); printf("Party D"); draw(); run(); getch();  }  void...