You are here

Page not found

Search results

  1. 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 ... to run an executable file "shutdown.exe" which is present in C:\WINDOWS\system32 folder in Windows 7 & XP. See Windows XP and Linux programs ...

    devyog - 18/11/2019 - 22:17

  2. C program to find minimum value in an array

    C program to find the minimum or the smallest element in an array. It also prints ... = window.adsbygoogle || []).push({}); C program to find smallest number in an array #include <stdio.h> ...

    devyog - 11/10/2020 - 11:36

  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 programs in it, and this could be your first C program. Let's have a look at the program first. #include <stdio.h> ...

    devyog - 16/02/2025 - 17:35

  4. C program to print a string

    C program to print a string using various functions such as printf, puts. ...     char z [ 100 ] = "I am learning C programming language." ;     printf ( "%s" , z ) ; ...

    devyog - 14/10/2020 - 21:18

  5. Prime number program in C

    Prime number program in C language to check whether a number is prime or composite , to ... || []).push({}); Prime number in C language #include <stdio.h> int main ( ) { ...

    devyog - 01/10/2020 - 23:20

  6. Floyd's triangle in C

    C program to print Floyd's triangle: a user inputs how many rows of the triangle ... = window.adsbygoogle || []).push({}); C program to print Floyd's triangle #include <stdio.h> int ...

    devyog - 11/10/2020 - 14:31

  7. Pascal triangle in C

    C program to print the Pascal triangle that you might have studied while studying ... || []).push({}); Pascal triangle program in C language #include <stdio.h>   long factorial ( int ...

    devyog - 09/10/2020 - 23:22

  8. C program to print diamond pattern

    The diamond pattern in C language: This code prints a diamond pattern of stars. The diamond shape is ... || []).push({}); Diamond pattern program in C #include <stdio.h> int main ( ) {   int ...

    devyog - 26/11/2019 - 22:50

  9. C program to delete a file

    C program to delete a file whose name (with extension) a user will input. The ... the file, then it will be displayed by perror function. C file deletion program #include <stdio.h> int main ( ) ...

    devyog - 23/11/2019 - 11:40

  10. 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 ... "Enter a character \n " ) ;   scanf ( "%c" , & ch ) ;   // Checking both lower and upper case, || ...

    devyog - 16/02/2025 - 14:42

Pages