main()
{
float a=3.2e40;
printf("%d",a);
}
Answer Posted / rajendra chouhan
0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how can I read and write comma-delimited text?
What is bss in c?
Tell us two differences between new () and malloc ()?
What are the types of pointers?
Explain what is a pragma?
What is #include stdio h?
Stimulate calculator using Switch-case-default statement for two numbers
What is meant by errors and debugging?
When can you use a pointer with a function?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Differentiate between #include<...> and #include '...'
What is the scope of global variable in c?
What does s c mean in text?
What is scanf_s in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }