What are integer variable, floating-point variable and character variable?
Answer / Santosh Kumar Rena
In C, an integer variable stores whole numbers (positive or negative), and the size depends on the system you're using. Some common types include char (one byte), short int (two bytes), int (four bytes), and long int (eight bytes). A floating-point variable is used to store real numbers with a decimal point, such as float (four bytes) and double (eight bytes). Character variables are used to store characters and are enclosed in single quotes (').
| Is This Answer Correct ? | 0 Yes | 0 No |
Describe explain how arrays can be passed to a user defined function
what is meant by the "equivalence of pointers and arrays" in C?
where does it flourished?
What is pass by reference in c?
How can you convert integers to binary or hexadecimal?
What is multidimensional arrays
Why do we use stdio h and conio h?
Do you know null pointer?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is a union?
what is use of loop?
What is #include conio h?