macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
Answer Posted / j
type declaration
| Is This Answer Correct ? | 16 Yes | 10 No |
Post New Answer View All Answers
Give the rules for variable declaration?
explain what is a newline escape sequence?
Explain is it valid to address one element beyond the end of an array?
Explain enumerated types.
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How do I get an accurate error status return from system on ms-dos?
How do c compilers work?
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
Are there namespaces in c?
Can you please compare array with pointer?
What does int main () mean?
Explain how can I convert a number to a string?
Can you think of a logic behind the game minesweeper.
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is context in c?