Page not found
Search results
Pattern programs in C
Pattern programs in C language: These programs print various patterns of numbers and stars. These codes illustrate how to create various patterns using C programming. Most of these C programs involve usage of nested for loops. A ... ******* ********* We have shown five rows above; in the program, you will be asked to enter the numbers of rows you want to print in ...
yogesh - 06/01/2018 - 16:13
Pascal triangle C program
Pascal triangle C program: C program to print Pascal triangle which you might have studied while studying ...
yogesh - 06/01/2018 - 16:52
C program to merge two files
C program to merge two files and store their contents in another file. The files ... we read two files until EOF (end of file) is reached. C programming code #include <stdio.h> #include <stdlib.h> ...
yogesh - 27/02/2018 - 23:56
C program to find the frequency of characters in a string
C program to find the frequency of characters in a string: This program counts ... For example, in the string "code" each of the characters 'c,' 'd,' 'e,' and 'o' has occurred one time. Only lower case alphabets ...
yogesh - 23/02/2018 - 14:18
C program to generate and print armstrong numbers
C program to generate Armstrong numbers. In our program, a user will input two ... numbers see Check Armstrong number program . C programming code #include <stdio.h> int check_armstrong ( ...
yogesh - 06/01/2018 - 16:33
C program to delete vowels from a string
Remove vowels from a string in C: C program to remove or delete vowels from a string, if the input string is "C ...
yogesh - 20/03/2018 - 11:16
C program to perform addition, subtraction, multiplication and division
C program to perform basic arithmetic operations which are addition, subtraction, ... assumed to be integers and will be entered by a user. C programming code #include <stdio.h> int main ( ) { ...
yogesh - 13/02/2018 - 10:47
C program to check orthogonal matrix
C program to check if a matrix is orthogonal or not. For an orthogonal matrix AA T = I. Example of an orthogonal matrix: 1 0 0 1 C programming code #include <stdio.h> int main ( ) { ...
yogesh - 02/04/2018 - 20:56
C program to shut down or turn off computer
C program to shut down your computer: This program turns off, i.e., shut down ... 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 - 06/01/2018 - 20:27
C program to insert an element in an array
C program to insert an element in an array, for example, consider an array a[10] ... its size i.e array will not contain 11 elements. C programming code #include <stdio.h> int main ( ) { ...
yogesh - 06/01/2018 - 17:37