C Programming Code Examples
C > File Operations Code Examples
Compare two Binary Files, Printing the First Byte Position where they Differ
Generate All Possible Combinations of List -
Algorithm takes the input of 'n' data element and prints all 'possible combination'. For that, it maintains a boolean 'Array of Length' "n". If the corresponding boolean value is true, then
Every Possible Combination of two Strings -
Program display every 'possible combination' of 2 "Words or Strings" from the input strings without repeated combinations. Read strings into 2d character arrays. Concatenate string1
The C++ Language While Loop Statement -
The statements within the while loop would keep on getting executed till the "condition" being tested remains "true". When condition becomes false, the control passes to the first
C Programming Language Mode Program -
C In Statistics Maths, a mode is a value that occurs the highest numbers of time. Example assume a set of values 8, 5, 4, 7, 8. mode of this value set is 8 as it appears more than any
Accept Two Integers and Check if They are -
Take the two integers as input and store it in the variables x & y respectively. Using if, else statements check if x is equal to y. If they are equal, then print the output as "x and y are...
Class with constructor ( for bank account ) -
Member functions of bank class. Enter the Name of the depositor, Enter the Account Number, Enter the Account Type, Enter the Amount to Deposit, Enter the amount to...
Code Finds Second Smallest of n Elements -
Linearly traverse the data array. Keep track of the "Smallest Number". Simultaneously keep updating the second smallest number also. A function to calculate second. If array element
Positional Notation of numbers in C Code -
Enter the number to convert, enter base to which we will convert n, right-hand digit of nprime. Generate digits of converted number right to left. Isolate right-hand digit of n.