How can I write functions that take a variable number of arguments?
No Answer is Posted For this Question
Be the First to Post Answer
The file stdio.h, what does it contain?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is memmove?
Is null always defined as 0(zero)?
what is the structure pointer?
How do I determine whether a character is numeric, alphabetic, and so on?
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); }
what is an inline function?
what is the mean of c languages.
What does %c do in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Write a program to check whether a number is prime or not using c?