macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
Answer Posted / subbu
answer is b
| Is This Answer Correct ? | 13 Yes | 18 No |
Post New Answer View All Answers
What is function prototype in c language?
What is a header file?
How can you find the day of the week given the date?
program to convert a integer to string in c language'
What are global variables and explain how do you declare them?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Write a program to check whether a number is prime or not using c?
What is the significance of scope resolution operator?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Differentiate between declaring a variable and defining a variable?
How can a program be made to print the name of a source file where an error occurs?
What is a pointer variable in c language?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What are structures and unions? State differencves between them.