C Aptitude Questions and answers with explanation.

C Aptitude 1C program aptitude questions, answers and explanation for interview preparations.In this site, We discussed various type of C programs, now we are moving into further steps by looking at the c aptitude questions.This questions and answers are helpful to freshers and job hunters. C interview questions are from various companies and experts. Read …

K & R C Exercise 1-18

K and R C, Solution to Exercise 1-18:Remove trailing blanks and tabs from each line of input, and to delete entirely blank lines. K and R C Programs Exercises provides the solution to all the exercises in the C Programming Language, second addition, by Brian W.Keringhan and Dennis M.Ritchie(Prentice Hall,1988). You can learn and solve …

Breadth First Search (BFS) in C

Breadth First Search/Traversal C program to implement Breadth First Search(BFS). Breadth First Search is an algorithm used to search a Tree or Graph. BFS search starts from root node then traverses into next level of graph or tree, if item found it stops other wise it continues with other nodes in the same level before moving …

Linked List Operations

Data structures using C, Linked list is a data structure in which the objects are arranged in a linear order. Linked List contains group of nodes, in which each node contains two fields, one is data field and another one is the reference field which contains the address of next node. In this program we …

Binary search in C

C Program to implement Binary search. Binary search technique is simple searching technique which can be applied if the items to be compared are either in ascending order or descending order. The general idea used in binary search is similar to the way we search for the telephone number of a person in the telephone …

Print “Hello World” Without Using Semicolon

How to Write a “Hello World” C program without using semicolon?Asked in various interviews…Read more about C Programming Language . Read more Similar C ProgramsC Interview QuestionsNumber Theory  C Strings You can easily select the code by double clicking on the code area above. To get regular updates on new C programs, you can Follow …