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
Can I initialize unions?
What is use of #include in c?
What are the basic data types associated with c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
How many data structures are there in c?
When c language was developed?
What is %g in c?
What is array in C
What are dangling pointers? How are dangling pointers different from memory leaks?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Do pointers take up memory?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Is c++ based on c?
Is c is a high level language?