What is the purpose of sprintf?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program for finding factorial of a number.
WHAT IS ABSTRACT DATA TYPE
what is the similarities between. system call and library function?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
What is the 'named constructor idiom'?
Explain what are binary trees?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Why static variable is used in c?
How do you prevent buffer overflows in C?
What is a union?
wat are the two methods for swapping two numbers without using temp variable??
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }