Page not found
Search results
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> ... = window.adsbygoogle || []).push({}); C program for Windows XP It will ask if you want to shutdown your computer, ...
devyog - 18/11/2019 - 22:17
C program for pattern matching
Pattern matching in C: C program to check if a string is present in an another string, for example, the ... We are implementing naive string search algorithm in this program. (adsbygoogle = window.adsbygoogle || ... ( a ) ; printf ( "Enter a string to find \n " ) ; gets ( b ) ; position = ...
devyog - 01/12/2019 - 08:56
C program to print a string
C program to print a string using various functions such as printf, puts. ... input a string, we can use scanf and gets functions. C program #include <stdio.h> int main ( ) { ... } return 0 ; } C program to print a string using recursion #include <stdio.h> ...
devyog - 14/10/2020 - 21:18
C program to delete a file
C program to delete a file whose name (with extension) a user will input. The ... be present in the directory in which the executable of this program is present. Macro "remove" is used to delete the file. If there is an ... it will be displayed by perror function. C file deletion program #include <stdio.h> int main ( ) { ...
devyog - 23/11/2019 - 11:40
C++ hello world program
... Hi! Are you searching for how to write a C++ hello world program? I hope I will be able to help you with that. Hello world C++ program #include <iostream> // Declaration of header using ...
devyog - 31/10/2019 - 20:47
Paint program in C
Paint program in C to draw different shapes using mouse such as line, circle, pixel ... it will help you in understanding the code. */ C paint program #include<graphics.h> #include<dos.h> ...
devyog - 23/11/2019 - 12:26
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 ... } return 0 ; } The program uses nested for loops. The first is to keep track of the number of ...
devyog - 11/10/2020 - 14:31
Prime number program in C
Prime number program in C language to check whether a number is prime or composite , to ... || []).push({}); Output of program: Download Prime number program. C program for prime number or not #include<stdio.h> ...
devyog - 01/10/2020 - 23:20
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 ... || []).push({}); Output of program: C program using pointers #include <stdio.h> ...
devyog - 23/11/2019 - 11:40
C program to print diamond pattern
... || []).push({}); Diamond pattern program in C #include <stdio.h> int main ( ) { ... || []).push({}); Output of program: Download Diamond program. C program to print diamond using recursion #include ...
devyog - 26/11/2019 - 22:50