Tuesday, 18 September 2012

C Language Multiple Choice Questions And Answers - Basic Concepts

Multiple choice questions and answers with explanation on C language. The questions are based on the basic concepts of C language like keywords, Expressions etc.1) What will be the output of following program ?      #include       int main( )        {             int i=2,j=3,k,l;             float a,b;             k = i/j * j;             l =  j/i * j;             a = i/j * j;

No comments:

Post a Comment