From the category archives:

Programming

C Programming

File Handling – Reading Strings and individual Characters

Reading Strings and individual Characters from a text file using File Handling in C.

C Programming

File Handling – Separate Even, Odd numbers

Accept 10 numbers and separate Even,Odd numbers and write them into two separate files using File Handling in C.

C Programming

File Handling – Add, Delete, Modify, Search Records

Program to Add, Delete, Modify, Search records of Employee using a structure in a Binary file using File Handling in C.

C Programming

Dynamic Linear Search

Creating a dynamic array using malloc() and performing a Linear search on the Dynamic Data Structure.

C Programming

File Handling – Reading and Writing to a Binary File

File Handling in C using a Binary file to write a structure variable to a file and read the same to display it as output.

C Programming

Delete Element in an Array

‘Deleting’ elements from an array might mean two things: deleting the value for a particular index (or indices) in the array (while still leaving the slot in the array open), or, actually removing a slot (and its contents) from the array.

C Programming

Bubble Sort

Bubble sort is a simple sorting algorithm. It works by repeatedly stepping through the list to be sorted, comparing each pair of adjacent items and swapping them if they are in the wrong order.

C Programming

Fibonacci Series

In mathematics, the Fibonacci numbers are the following sequence of numbers:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, . . .

C Programming

Binary Search on Array of 10 Elements

To conduct Binary Search on an array of 10 elements stored in asscending order.

Page 4 of 41234

WordPress - Vaibhav Kanwal