Page not found
Search results
C program to delete duplicate elements from an array
C program to delete duplicate elements from an array. For example, if an array ... element we get the following array: 1, 6, 2, 9. C program #include <stdio.h> int main ( ) { ... ] , b [ 100 ] , count = 0 , c , d ; printf ( "Enter number of elements in array \n " ...
devyog - 23/11/2019 - 11:40
C program to find nCr and nPr
C program to find nCr and nPr, remember, nCr = n!/(r!*(n-r)!) and nPr = n!/(n-r)!. C program to find nPr and nCr using a function #include <stdio.h> ... long factorial ( int n ) { int c ; long result = 1 ; for ( c = ...
devyog - 22/11/2019 - 19:42
Sum of n natural numbers in C
C program to find the sum of n natural numbers using the formula and a for ... Sum of first n natural numbers = n*(n+1)/2. C program to find sum of n natural numbers #include <stdio.h> ... } Output: Sum of n natural numbers in C using a for loop #include <stdio.h> int main ( ) ...
devyog - 04/11/2020 - 14:18
C program to implement stack data structure
Stack program in C: C program to implement stack using array. C program #include <stdio.h> #include <stdlib.h> int ...
devyog - 23/11/2019 - 11:40
C program to get IP address
C program to print IP (Internet Protocol) address of your computer, system ... prints IP address, subnet mask, and default gateway. The code given below works for Windows XP and Windows 7. If you are using Turbo C compiler then execute this program from the folder, it may not work when you ...
devyog - 23/11/2019 - 11:40
C read file
How to read a file in C? You already know what a file is and their types (text/binary ... they are present on the hard disk. Suppose you made a C program last week to sort numbers, and you wish to see the program again. How ... Read file in C using fopen C programming code to open a file and print its contents on screen. #include ...
devyog - 25/10/2020 - 21:59
Area of a circle in C
C program to find the area of a circle: C programming code to calculate the area of a circle. In the program, we use 3.14159 as the ...
devyog - 04/11/2020 - 13:21
C program to find maximum element in a matrix
C program to find the largest or the maximum element in a matrix. C program #include <stdio.h> int main ( ) { int m , n , c , d , matrix [ 100 ] [ 100 ] , maximum ; ...
devyog - 03/12/2019 - 22:15
C program to reverse words in a string
C program to reverse words in a string or sentence, for example, if the input string is "c++ programming language" then the output will be "++c gnimmargorp egaugnal" i.e. we will invert each word occurring in the input ...
devyog - 23/11/2019 - 11:40
Matrix multiplication in C
Matrix multiplication in C language to calculate the product of two matrices (two-dimensional arrays). A ... || []).push({}); Matrix multiplication in C language #include <stdio.h> int main ( ) { int m , n , p , q , c , d , k , sum = 0 ; int first [ 10 ] [ ...
devyog - 12/12/2019 - 00:47