You are here

Page not found

Search results

  1. Even or odd program in C

    ... to check odd or even using different methods. In the decimal number system, even numbers are exactly divisible by two while odd numbers are ... || []).push({}); Odd or even program in C using modulus operator #include <stdio.h> int ...

    Yogesh Suneja - 11/10/2020 - 10:23

  2. Transpose of a matrix in Java

    Java program to find the transpose of a matrix (of any order), we interchange its ... ;     System . out . println ( "Enter the number of rows and columns of matrix" ) ;     m = in. nextInt ...

    Yogesh Suneja - 05/12/2019 - 20:21

  3. Hello world program in C

    How to write a hello world program in C language? To learn a programming language, you must start writing ... not be familiar with the strings yet. C Hello world a number of times Using a loop we can display it a number of times. ...

    Yogesh Suneja - 01/10/2020 - 22:47

  4. C programming

    ... 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++ ... to communicate. There are many languages such as C, C++, Java, Python, and many others, each having their features. Let's discuss first ...

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

  5. C program to check whether a character is vowel or consonant

    C program to check whether a character is a vowel or consonant: A user inputs a ... = window.adsbygoogle || []).push({}); C program to check vowel or consonant using if else In this program, we check whether a character is a vowel or consonant or punctuation or ...

    Yogesh Suneja - 11/10/2020 - 20:05

  6. Linear search in C

    Linear search in C to find whether a number is present in an array. If it's present, then at what location it ... || []).push({}); Linear search program in C #include <stdio.h> int main ( ) { ... || []).push({}); Output of program: Download Linear search program. C program for ...

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

  7. C programs

    ... will work with GCC and Dev C++ compilers. The first program, prints "Hello World." ... , it 's a good idea to learn C before learning C++ or Java. C++ is object-oriented and contains all features of C, so learning C help ...

    Yogesh Suneja - 23/11/2021 - 20:38

  8. C program to shut down or turn off computer

    C program to shut down your computer, i.e., to turn off a computer system. System ... = window.adsbygoogle || []).push({}); C program for Windows 7 #include <stdio.h> #include <stdlib.h> ... for example, you can use /t option to specify the number of seconds after which shutdown occurs. Syntax: "shutdown /s /t x"; ...

    Yogesh Suneja - 18/11/2019 - 22:17

  9. Addition of two numbers in C

    ... window.adsbygoogle || []).push({}); Addition program in C #include <stdio.h> int main ( ) { ...   return 0 ; } Output of the program: Download Add numbers program. Similarly, we can ...

    Yogesh Suneja - 25/10/2020 - 18:22

  10. C program to find next prime palindrome

    C program to find next prime palindrome: a user will enter a number, and we have to find the least number greater than it which is a ... n ++;     t = n ;     // Calculating reverse of the number     while ( t )     {       ...

    Yogesh Suneja - 01/12/2019 - 08:56

Pages