Page not found
Search results
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 add two complex numbers
C program to add two complex numbers: this program performs addition of two complex numbers which will be entered by a ... imaginary parts of complex numbers and prints the complex number, 'i' is the symbol used for iota. For example, if a user inputs two ...
devyog - 23/11/2019 - 11:40
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
C program to print diamond pattern
... || []).push({}); Diamond pattern program in C #include <stdio.h> int main ( ) { ... int n , c , k ; printf ( "Enter number of rows \n " ) ; scanf ( "%d" , & n ) ...
devyog - 26/11/2019 - 22:50
Decimal to binary in C
... Decimal to binary in C to convert an integer from decimal number system (base-10) to binary number system (base-2). The size of an ... = window.adsbygoogle || []).push({}); C program to convert decimal to binary #include <stdio.h> int ...
devyog - 10/10/2020 - 15:27
C program to find the largest of three numbers
C program to find the largest of three numbers: User will input three integers and the program will find the largest of them. If all the numbers are the same then the ... > y && x > z ) printf ( "First number is largest. \n " ) ; else if ( y > x && ...
devyog - 30/10/2019 - 22:45
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
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 || []).push({}); C program #include <stdio.h> #include <string.h> int ...
devyog - 01/12/2019 - 08:56
C program to find HCF and LCM
C program to find HCF and LCM: The code below finds the highest common factor and ... || []).push({}); Download HCF and LCM program. Output of program: C program to find hcf and lcm using recursion ...
devyog - 10/12/2019 - 20:50