What are data types of C language ..??
Answers
Answer:
A data type specifies the type of data that a variable can store such as integer, floating, character, etc. There are the following data types in C language.
...
Data Types in C.
TypesData TypesBasic Data Typeint, char, float, doubleDerived Data Typearray, pointer, structure, unionEnumeration Data TypeenumVoid Data Typevoid
Answer:
Operators Associativity is used when two operators of same precedence appear in an expression. Associativity can be either Left to Right or Right to Left. For example: '*' and '/' have same precedence and their associativity is Left to Right, so the expression “100 / 10 * 10” is treated as “(100 / 10) * 10”.
Explanation:
Operators Associativity is used when two operators of same precedence appear in an expression. Associativity can be either Left to Right or Right to Left. For example: '*' and '/' have same precedence and their associativity is Left to Right, so the expression “100 / 10 * 10” is treated as “(100 / 10) * 10”.