stdarg.h header file is included while writing a function which accepts variable number of arguments.
Is there any option available to include header file while compiling?
For Ex: i don't want to write "#include<stdio.h>" in my .c file. but while compiling i want to include it. (like, $: cc 1.c -option stdio.h) can it be done?
Are there any defined rules that should be considered while writing function definition ?
Can someone help me with step by step example and may be with sample code.