Is stack a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to add a given duration with time(24hrs format)
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
write a program whose output will be- 1 12 123 1234
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
Explain the properties of union. What is the size of a union variable
How do you write a program which produces its own source code as output?
What is c programming structure?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is array within structure?
What is the symbol indicated the c-preprocessor?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
Once I have used freopen, how can I get the original stdout (or stdin) back?