What is the difference between int and float?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
int: Stores integer values (e.g., 1, -10).
float: Stores floating-point numbers (e.g., 3.14, -2.7).
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
int: Stores integer values (e.g., 1, -10).
float: Stores floating-point numbers (e.g., 3.14, -2.7).
| Is This Answer Correct ? | 0 Yes | 0 No |
int: Stores integer values (e.g., 1, -10).
float: Stores floating-point numbers (e.g., 3.14, -2.7).
| Is This Answer Correct ? | 0 Yes | 0 No |
What are actual arguments?
Why flag is used in c?
What are the general description for loop statement and available loop types in c?
Write a function that will take in a phone number and output all possible alphabetical combinations
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
difference between object file and executable file
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
Explain how does flowchart help in writing a program?
Which node is more powerful and can handle local information processing or graphics processing?
How to access or modify the const variable in c ?
16 Answers HCL, HP,
Why do we use return in c?
what is the defrenece between structure and union