Submitted by tushar pramanick on Fri, 03/08/2013 - 00:25

To help solidify your understanding of this hour's lesson, you are encouraged to answer the quiz questions and finish the exercises provided in the Workshop before you move to the next lesson. The answers and hints to the questions and exercises are given in Appendix E, "Answers to Quiz Questions and Exercises."
Quiz

    Given x = 0, will the arithmetic operations inside the following if statement be performed?

    if (x != 0)
       y = 123 / x + 456;


    Given x = 4, y = 2, and operator = `-', what is the final value of x after the following switch statement is executed?

    switch (operator){
       case `+':  x += y;
       case `-':  x -= y;
       case `*':  x *= y;
       case `/':  x /= y;
       default:   break;
    }


    Similarly to in question 2, using x = 4, y = 2, and operator = `-', what is the final value of x after the following switch statement is executed?

    switch (operator){
       case `+':  x += y; break;
       case `-':  x -= y; break;
       case `*':  x *= y; break;
       case `/':  x /= y; break;
       default:   break;
    }


    What is the value of the integer variable x after the following code is executed?

    x = 1;
    for (i=2; i<10; i++){
       if (i%3 == 0)
          continue;
       x += i;
    }


Exercises

    Rewrite the program in Listing 10.1. This time, use the logical expression i%6 == 0 in the if statement.
    Rewrite the program in Listing 10.1 by using nested if statements.
    Write a program to read characters from the standard I/O. If the characters are A, B, and C, display their numeric values on the screen. (The switch statement is required.)
    Write a program that keeps reading characters from the standard input until the character q is entered.
    Rewrite the program in Listing 10.7. This time, instead of skipping 3 and 5, skip the integer that can be divided evenly by both 2 and 3.

Related Items

C প্রোগ্রামিং এর putc() Function এর ব্যবহার

Using the putc() Function
The putc() function writes a character to the specified file stream, which, in our case, is the standard output pointing to your screen.

 

C প্রোগ্রামিংয়ের getchar() Function এর ব্যবহার

Using the getchar() Function
The C language provides another function, getchar(), to perform a similar operation to getc(). More precisely, the getchar() function is equivalent to getc(stdin).

 

The syntax for the getchar() function is

 

C প্রোগ্রামিংয়ে getc() Function এর ব্যবহার

Using the getc() Function
The getc() function reads the next character from a file stream, and returns the character as an integer.

 

The syntax for the getc() function is

 

C প্রোগ্রামিং এর double Data Type সম্পর্কে আলোচনা

The double Data Type
In the C language, a floating-point number can also be represented by another data type, called the double data type. In other words, you can specify a variable by the double keyword, and assign the variable a floating-point number.