C Programming Homework Assignments
Types Of Data
The data in C can be classified into four types.
• Basic type: These are the arithmetic data type. These are further classified into two groups- integer type data and floating point type data.
• Enumerated type: These data are arithmetic data which are used to define variables which can only assign discrete integer values in the program.
• Void type: The void indicates that there is no value available.
• Derived data: derived data includes- array, pointer, structure, function and union types of data.
Operators are the symbols that command the compiler to perform specific logical and mathematical functions. C language has the following types of operators that are used in writing the program statements.
• Relational operators: ==, !=, >, <, >=, <=
• Arithmetic operators: +, -, *, /, %, ++, --
• Bitwise operators: &, |, <<, >>
• Logical operators: &&, ||, !
• Misc operators: sizeof(), &, *, ? :
• Assignment operators: =, +=, -=, *=, /=, %=, <<=, >>=, &=, |=
Decision Making
Most Popular FAQs Searched By Students:
Importance Of C Programming Language
C is the mother of all languages. It is a favorite programming language due to its qualities. Some qualities are:
It is a robust language whose rich setup built in functions and operator can be used to write any complex program.
The Programs written in C language are efficient due to a variety of data types and powerful operators.
In C Programming Language contain only 32 keywords. It has several standard functions which can be used for developing the program.
C Programming language is a system programming language, so it was mainly developed to write an operating system.











