You are here

Page not found

Search results

  1. Java for loop

    ... You can terminate an infinite loop by pressing Ctrl + C . Simple for loop example in Java Example program below uses for ... ( String [ ] args ) {     int c ;         for ( c = 1 ; c <= 10 ; c ...

    devyog - 04/12/2019 - 08:47

  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++ ...

    devyog - 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 ...

    devyog - 05/12/2019 - 00:40

  4. 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) ...

    devyog - 19/01/2018 - 20:18

  5. 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 ...

    devyog - 05/12/2019 - 18:46

  6. Armstrong number in Java

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

    devyog - 05/12/2019 - 00:30

  7. 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 ...

    devyog - 01/12/2017 - 21:25

  8. Enhanced for loop in Java

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

    devyog - 05/12/2019 - 00:09

  9. Submit your source code or program

    Here, you can submit your C, C++, or Java source code/program. We will check it, and if we find it useful, ...

    devyog - 22/11/2019 - 19:38

  10. math.h

    Math.h header file( < math. h > ) of C programming language contains constants and functions to perform mathematical operations. You can use functions of math.h in your C programs to calculating absolute value of a number, calculating logarithms ...

    devyog - 14/12/2017 - 22:33

Pages