macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
Answers were Sorted based on User's Feedback
What is the difference between union and anonymous union?
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
why programming language C is still used in operating system's kernel??
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is int main () in c?
How can I access memory located at a certain address?
what is the advantage of software development
What is keyword in c?
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
what are the 10 different models of writing an addition program in C language?
What is bash c?
Explain how can you avoid including a header more than once?