WHAT IS FLOAT?

Answers were Sorted based on User's Feedback



WHAT IS FLOAT? ..

Answer / jayant

ts a primitive data type used to store floating point values
like 12.009

Is This Answer Correct ?    5 Yes 0 No

WHAT IS FLOAT? ..

Answer / santosh

float is a data type in which we store the floating point
numbers

Is This Answer Correct ?    2 Yes 0 No

WHAT IS FLOAT? ..

Answer / avinash

FLOAT IS DECIMAL,AMOUNT.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C Interview Questions

WHAT IS C?

6 Answers  


What is c programming structure?

0 Answers  


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

0 Answers   Wilco,


Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147

2 Answers  


What are the advantages of using linked list for tree construction?

0 Answers  


What is assert and when would I use it?

0 Answers  


Write a program to print factorial of given number without using recursion?

0 Answers  


write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4

1 Answers  


please explain every phase in the "SDLC" in the dotnet.

0 Answers  


What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers

0 Answers  


main() { clrscr(); } clrscr();

6 Answers   ME, Wipro,


Do you know pointer in c?

0 Answers  


Categories