how do you write a function that takes a variable number of
arguments? What is the prototype of printf () function?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c faster?
Can we access array using pointer in c language?
void main() { int i=5; printf("%d",i+++++i); }
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
What are the key features of C?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
What is the code in while loop that returns the output of given code?
Why we use int main and void main?
program to find the ASCII value of a number
What does calloc stand for?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
What is the difference between break and continue?