What is the difference between declaring a variable by
constant keyword and #define ing that variable?
Answer / ganesh
constant- it cannot be changed
# define - it can be changed if we can redefine
Is This Answer Correct ? | 2 Yes | 0 No |
What is the g value paradox?
main is a predefined or user define function if user defined why? if predefined whay?
What are the valid places to have keyword “break”?
What is the use of the #include directive?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
What is structure padding & expalain wid example what is bit wise structure?
which one is highest Priority in c? a)=,b)+,c)++,d)==
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What are the types of variables in c?
Explain what is a program flowchart and explain how does it help in writing a program?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables