What is the use of #define preprocessor in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the proper way of these job Tell me about there full work
What is use of bit field?
what is the difference between NULL('\0') and 0?
Define macros.
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Which command is more efficient? *(ptr+1) or ptr[1]
Why is event driven programming or procedural programming, better within specific scenario?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
how to count no of words,characters,lines in a paragraph.
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?