What is the difference between int and float?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between arrays and pointers?

771


hi send me sample aptitude papers of cts?

1863


Why C language is a procedural language?

801


Why c is procedure oriented?

785


Write a program to swap two numbers without using third variable in c?

861


What are the different file extensions involved when programming in C?

1014


What is %s and %d in c?

752


What is meant by errors and debugging?

861


What are examples of structures?

788


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

893


How do you define CONSTANT in C?

879


What is null pointer in c?

752


Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?

815


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

879


write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?

2635