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 |
Define and explain about ! Operator?
What are the different types of control structures in programming?
What are operators in c?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
What are the __date__ and __time__ preprocessor commands?
hat is a pointer?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is difference between Structure and Unions?
What is volatile, register definition in C
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
What is pointers in c with example?