How can I write a function that takes a format string and a variable number of arguments?
No Answer is Posted For this Question
Be the First to Post Answer
How do I use void main?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
write a program to sort the elements in a given array in c language
Explain modulus operator.
What is a volatile keyword in c?
What are the key features of C?
Differentiate b/w Modify and Update commands giving example.
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
What is the purpose of void pointer?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
How can I increase the allowable number of simultaneously open files?