break;

  1. sksksksk

    Simple Core Java Error

    Well below is a program for Railway Reservation. Its not mine but I downloaded it from net. import java.io.*; public class reservation { InputStreamReader isr=new InputStreamReader (System.in); BufferedReader br=new BufferedReader (isr); //System.out.print("Please enter a word"); int...
  2. Prongs298

    What is wrong with this program?

    it exits after i enter the choice of the menu item.. #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<math.h> #define MAX 1000 char v2; void dectobin(); void octtobin(); void hextooct(); void hextobin(); void main(){ do { printf("WHAT DO YOU WANT...
  3. rajsujayks

    How to make the program produce the required output..?

    I want to get the input and output as in the files attached. This is my code: //Employee Details... //Execution syntax : "ProgramName InputFile OutputFile" //Input File should contain grade and name of employee //separated by a tab with one record per line.. #include <stdio.h> #include...
  4. krates

    Php simple navigation same as vb

    Html pages are boring. Everyone is using php navigations now, for example ?id=news etc., well its not all that complicated and since you are reading this I assume you would like to learn how to do it! Note: Your server must have php installed for this to work and your extensions should end...
  5. nix

    whats wrong with this simple C stack program?

    /*stack program*/ #include<stdio.h> #include<conio.h> #include<stdlib.h> int s[10],top=-1,item,n=5; void push() { if (top==n-1) { printf("stack is full, so pushing not possible\n"); getch(); return; } printf("ener the item to be pushed\n"); scanf("%d",&item); top=top+1; s[top]=item; } void...
Top Bottom