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

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

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

  3. 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 ) ; ...

    Yogesh Suneja - 14/10/2020 - 21:18

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

    Yogesh Suneja - 01/10/2020 - 23:20

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

    Yogesh Suneja - 11/10/2020 - 14:31

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

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

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

    Yogesh Suneja - 26/11/2019 - 22:50

  8. 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 ( ) ...

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

  9. Sum of n numbers in C

    Sum of n numbers in C: This program adds n numbers that a user inputs. The user enters a number indicating ... = window.adsbygoogle || []).push({}); C program to find sum of n numbers using a for loop #include <stdio.h> ...

    Yogesh Suneja - 10/12/2019 - 23:42

  10. C program to sort a string in alphabetic order

    C program to sort a string in alphabetic order: For example, if a user inputs a ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> #include ...

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

Pages