C Programming Question and Answers
49. | What is operator in C? |
---|---|
|
|
50. | What are the different types of operators in C? |
---|---|
C language offers many types of operators. They are
|
|
51. | What is bitwise operator in C? |
---|---|
|
|
52. | What is the significance of storage class? |
---|---|
The storage class, in general, determines the scope and lifetime of a variable, which in turn helps to economize the memory usage. | |