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 is use of pointer?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
what is the use of c program?
4 Answers Synergy, Web Synergies,
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
Can you write a programmer for FACTORIAL using recursion?
Explain how can you tell whether a program was compiled using c versus c++?
Where are c variables stored in memory?
Expand the following LKB BKL FFG
WHAT IS ABSTRACT DATA TYPE
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
what does " calloc" do?
What should malloc(0) do?