You are here

Page not found

Search results

  1. C programming

    To quickly learn C language you must start writing programs in it. To do so you need a text editor and a compiler to translate a source program into machine code that can be executed directly on a machine. Dev C++ IDE is a good choice, so if you are not having it installed on your ...

    Yogesh Suneja - 10/12/2019 - 20:37

  2. Factorial program in Java

    Java program to find factorial of a number, if the number is negative, then an error ... String args [ ] )   {     int n, c, f = 1 ;     System . out . println ( "Enter an ... ;     else     {       for ( c = 1 ; c <= n ; c ++ )         f = f * c ...

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

  3. Palindrome number in C

    ... If both are the same, it's a palindrome otherwise not. C palindrome string program . (adsbygoogle = window.adsbygoogle ...

    Yogesh Suneja - 09/10/2020 - 23:18

  4. Transpose of a matrix in C

    Transpose of a matrix in C language: This C program prints transpose of a matrix. To obtain it, we interchange rows and ...

    Yogesh Suneja - 13/12/2019 - 20:54

  5. Area of a circle in C

    C program to find the area of a circle: C programming code to calculate the area of a circle. In the program, we use ...

    Yogesh Suneja - 04/11/2020 - 13:21

  6. Conditional compilation in C programming language

    Conditional compilation in C programming language: Conditional compilation as the name implies that the ... the following code to quickly understand the scenario: C program #include <stdio.h> #define x 10       int ...

    Yogesh Suneja - 23/11/2019 - 11:40

  7. Even odd program in Java

    Java program to check whether a number is even or odd; if it's divisible by two, ... Another method to check odd or even, for explanation see: C program to check odd or even . Code: import java.util.Scanner ... ( String args [ ] )   {     int c ;     System . out . println ( "Input an integer" ) ...

    Yogesh Suneja - 25/10/2020 - 23:04

  8. Java program to print alphabets

    Java program to print letters (i.e., a, b, c, ..., z in lower case) on the screen ... shows only the body of the main method): char c = 'a' ; while ( c <= 'z' ) {   ...

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

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

    Yogesh Suneja - 29/09/2018 - 14:15

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

    Yogesh Suneja - 05/12/2019 - 23:07

Pages