the data type used for unlimited value in c
and how to do this program



the data type used for unlimited value in c and how to do this program..

Answer / soumya

Data type : float

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }

17 Answers   NDS,


What is c programming structure?

0 Answers  


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL

0 Answers  


What are the application of void data type in c?

0 Answers  


What is the difference between int main and void main?

0 Answers  






what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555

0 Answers   Wipro,


write a programe to find the factorial of given number using recursion

3 Answers  


What do you mean by recursion in c?

0 Answers  


what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?

1 Answers  


6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


How can you call a function, given its name as a string?

0 Answers  


What is the purpose of Scanf Print, getchar, putchar, function?

3 Answers  


Categories