any function have arguments one or more OR not . it is compulsary
a) any function compulsary have one or more arguments
b) any function did not have arguments. It is not compulsary
c) it is optional it is not compulsary
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is function pointer and where we will use it
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
What is function prototype in c with example?
Do you know the difference between exit() and _exit() function in c?
Explain how can I write functions that take a variable number of arguments?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????