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
Why is void main used?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
ASCII stands for
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
Why malloc is faster than calloc?
Write a code to remove duplicates in a string.
How can I recover the file name given an open stream or file descriptor?
What is nested structure in c?
code for concatination of 2 strings with out using library functions?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
Write a program using bitwise operators to invert even bits of a given number.