How can you return multiple values from a function?
No Answer is Posted For this Question
Be the First to Post Answer
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
what are non standard function in c
What does typedef struct mean?
How can you find out how much memory is available?
When should structures be passed by values or by references?
What is static and volatile in c?
I want tcs placement papers of 2004-2009 , its urgent
What are the standard predefined macros?
wat are the two methods for swapping two numbers without using temp variable??
A program to write a number of letters and numbers, such as counting and display
Explain what is the best way to comment out a section of code that contains comments?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?