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 coding of display the factorial of a number using array and function?
What are header files? What are their uses?
Why is c so popular?
can anyone suggest some site name..where i can get some good data structure puzzles???
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
Explain enumerated types.
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
write a c program to add two integer numbers without using arithmetic operator +
How can I sort a linked list?
What is data type long in c?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Does c have enums?