C Programming Code Examples
C > Hardware Interaction Through C Code Examples
Program for Scrolling the Window Down
Display the product of two float numbers -
In this c program, user is asked to enter two float numbers and the program stores the entered values into the variable j1 and j2. C program then multiplies entered numbers...
C Program LCM while loop & if statement -
The LCM of two integers num1 and num2 is the smallest positive integer that is perfectly divisible by both num1 and num2 (without a remainder). For example: the LCM of 72 and
Trim Leading & Trailing white spaces from -
I already explained how to remove leading as well as trailing white space characters from a given string. In this program we will Combine the logic of both in a single program. Logic to
C Program convert Decimail nos to Roman -
Convert decimail nos to roman equivalent upto 10,000. Function for generating roman equivalent of 1000's. Function for generating roman eq of 100's. Function for generating...
C Program Code Find the Length of String -
C Program calculate length of string without using strlen() function. You can use standard library function 'strlen()' to find the length of a string, this C program computes the length
Prime Numbers in a Range with Functions -
Declare function to find all prime numbers in given range. First give a meaningful name to our function. Say printPrimes() function will print all prime numbers in a range. Declare...
Find the First Capital Letter in String using -
C program using Recursion and finds the first 'capital letter' that exists in a string. We have included 'ctype.h' in order to make use of "int isupper(char); " function that's defined inside
C++ Language Simple Quick Sort Program -
"Quicksort" is an Efficient Sorting Algorithm, serving as systematic method for placing the elements of an array in order. 'Quicksort' can operate 'in-place' on an array, requiring small