You are here

Page not found

Search results

  1. C graphics tutorial

    This tutorial is for all those who wish to learn C graphics programming, no knowledge of graphics concepts is required. C ... programming in which you have to apply complex logic in your program and then you end up with a lot of errors and warnings in your program. ...

    devyog - 29/09/2018 - 14:15

  2. clrscr in C

    Function "clrscr" (works in Turbo C++ compiler only) clears the screen and moves the cursor to the upper ... use system function to execute the clear/cls command. C programming code for clrscr #include<stdio.h> ... = window.adsbygoogle || []).push({}); In the program, we display the message (Press any key to clear the screen) using ...

    devyog - 05/12/2019 - 23:07

  3. Java program to generate random numbers

    Java program to generate random numbers. We print 10 random numbers in the range [0, ... ( 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

  4. Using multiple classes in a Java program

    A Java program may contain any number of classes. The following program comprises of two classes: Computer and Laptop, both the classes have ... || []).push({}); Using two classes in Java program class Computer {   Computer ( ) {     ...

    devyog - 04/12/2019 - 20:24

  5. assert in C

    ... that is used to check specific conditions at runtime (when a program is under execution) and is very useful while debugging a program. ... assert(int expression); The expression can be any valid C language expression many a time it is a condition. In the program, we ...

    devyog - 02/10/2020 - 16:14

  6. switch case in C

    switch is a keyword of C language. Example C program explaining use of switch #include<stdio.h> main ( ...

    devyog - 05/01/2018 - 00:48

  7. Java program to convert Fahrenheit to Celsius

    Java program to convert Fahrenheit to Celsius: This code does temperature conversion ... || []).push({}); Java temperature conversion program import java.util.* ; class ...   } } Download Fahrenheit to Celsius program class file. (adsbygoogle = ...

    devyog - 04/12/2019 - 19:46

  8. Draw shapes using C graphics

    This C graphics program draws basic shapes such as circle, line, rectangle, ellipse and display text on screen using C graphics. This can be a first graphics program for a beginner. C program ...

    devyog - 23/11/2019 - 11:40

  9. Java program to open Notepad

    Java program to open Notepad, it's a text editor installed in the Windows operating ... Java programs in it, but you can also open it from your Java program. How to open Notepad using Java program? import java.util.* ; import java.io.* ; ...

    devyog - 05/12/2019 - 20:46

  10. Java program to get IP address

    Java program to print the IP (Internet Protocol) address of a computer system, we ... object, which represents the localhost. Java IP address program import java.net.InetAddress ; class IPAddress ... ) ;   } } Download IP address program class file. Output of program: The output shows the ...

    devyog - 05/12/2019 - 19:57

Pages