Decision making is one of the most important concepts of computer programming. As the name suggests “Decision Making” , we means to state that we will be making certain decisions to carry out different operations. These decisions making strategies are same as we come across in our daily life. But here we will be using […]

Read More »

Note : All the programs are tested under Turbo C/C++ compilers. It is assumed that, Programs run under DOS environment. Program is compiled using Turbo C/C++ compiler. The program output may depend on the information based on this assumptions (for example sizeof(int) == 2 may be assumed).

Read More »

Looping questions and answers with explanation for written test exam and interview in c programming language. Following are the some basic tricky questions in C language.  What will be output of following c code? #include<stdio.h> extern int x;

Read More »

Switch statement is a substitute for long if statements that compare a variable to several “integral” values (“integral” values are simply values that can be expressed as an integer, such as the value of a char). The value of the variable given into switch is compared to the value following each of the cases, and […]

Read More »

Home | Contact Us | Sitemap