Which header file should you include if you are to develop a function which can accept variable number of arguments?
No Answer is Posted For this Question
Be the First to Post Answer
can i know the source code for reversing a linked list with out using a temporary variable?
What is a #include preprocessor?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
Is c procedural or object oriented?
How can you return multiple values from a function?
What is stack in c?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
Why array is used in c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
Is using exit() the same as using return?