the real constant in c can be expressed in which of the following forms
a) fractional form only
b) exponential form only
c) ascii form only
d) both a and b
No Answer is Posted For this Question
Be the First to Post Answer
What are inbuilt functions in c?
How can I call a function with an argument list built up at run time?
What is a c token and types of c tokens?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
What is a memory leak? How to avoid it?
what is the use of ‘auto’ keyword?
Why c is called top down?
Explain the difference between strcpy() and memcpy() function?
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
What are disadvantages of C language.
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?