Why c is a procedural language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the advantages and disadvantages of macros.
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Explain c preprocessor?
Why is c platform dependent?
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
What is a built-in function in C?
What does it mean when a pointer is used in an if statement?
Why flag is used in c?
How can I make it pause before closing the program output window?
Define the scope of static variables.
What do the functions atoi(), itoa() and gcvt() do?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)