What is integer constants?
No Answer is Posted For this Question
Be the First to Post Answer
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
What is structure of c program?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
What are dangling pointers?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is pre-emptive data structure and explain it with example?
Explain b+ tree?
Is it possible to initialize a variable at the time it was declared?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
What is n in c?
What are volatile variables?