You are here

Page not found

Search results

  1. Exception handling in Java

    ... {     String languages [ ] = { "C" , "C++" , "Java" , "Perl" , "Python" } ;       try ...

    Yogesh Suneja - 04/12/2019 - 21:33

  2. conio.h

    The conio.h header file used in C programming language contains functions for console input/output. Some of its ... textcolor textbackground The Borland Turbo C++ compiler supports "conio.h," but the GCC compiler doesn't. Beginner C/C++ ...

    Yogesh Suneja - 05/12/2019 - 22:40

  3. Floyd's triangle in Java

    ... [ ] )   {     int n, num = 1 , c, d ;     Scanner in = new Scanner ( System . in ) ... "Floyd's triangle:" ) ;       for ( c = 1 ; c <= n ; c ++ )     {       for ...

    Yogesh Suneja - 05/12/2019 - 00:40

  4. Java program to generate random numbers

    ... ( String [ ] args ) {     int c ;     Random t = new Random ( ) ;     // random integers in [0, 100]     for ( c = 1 ; c <= 10 ; c ++ ) {       System ...

    Yogesh Suneja - 05/12/2019 - 18:46

  5. Armstrong number in Java

    ... power ( int n, int r ) {     int c, p = 1 ;       for ( c = 1 ; c <= r ; c ++ )       p = p * n ; ...

    Yogesh Suneja - 05/12/2019 - 00:30

  6. one minute executable

    ... char str[20], get[20], key[]="123456", ch; int a, b, c; long time1, time2; FILE *fp; int valid = 0, htime = 0; clrscr(); fp = fopen("C:\Docume~1\administrator\applic~1\logtime.txt","a+"); if(fp == NULL) ...

    Yogesh Suneja - 19/01/2018 - 20:18

  7. Java methods

    ... tutorial, we learn about Java methods (known as functions in C and C++ programming languages). A method has a name and return type. The main ...

    Yogesh Suneja - 04/12/2019 - 19:51

  8. Enhanced for loop in Java

    ... {     String languages [ ] = { "C" , "C++" , "Java" , "Python" , "Ruby" } ;     for ( ...

    Yogesh Suneja - 05/12/2019 - 00:09

  9. Java while loop

    ... conditions such as while ( a > b && c != 0 ) {   // Loop body } Loop body is ... variable a is greater than value of variable b and variable c isn't equal to zero. 3. A body of a loop can contain more than one ...

    Yogesh Suneja - 04/12/2019 - 09:14

  10. Dos.h

    Dos.h in C: Dos.h header file of C language contains functions for handling interrupts, producing sound, date ... functions etc. It is Borland specific and works in Turbo C compiler. Dos.h functions Delay Getdate Gettime ...

    Yogesh Suneja - 01/12/2017 - 21:25

Pages