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 |
ATM machine and railway reservation class/object diagram
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
When is an interface "good"?
What is return type in c?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
which is an algorithm for sorting in a growing Lexicographic order
What is a newline escape sequence?
What is the function of volatile in c language?
What is the difference between malloc() and calloc()?
Do string constants represent numerical values?
what are the compilation steps? ( i want inside the compiler )
Why is structure important for a child?