What is floating point constants?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
c program to compute AREA under integral
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
What is logical error?
Is array name a pointer?
What is the difference between struct and typedef struct in c?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
What are the disadvantages of a shell structure?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
How do we open a binary file in Read/Write mode in C?
Without using main fn and semicolon,print remainder for a given number in C language