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
what is the difference between static variable and register variable?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
What does the c in ctime mean?
code for quick sort?
What does %c do in c?
Explain the term printf() and scanf() used in c language?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
how to determine the complexity of an algorithm as log(n)
give an example of type casting by a simple c program