int funct();
int funct(int x) { return x=x+1; }
void funct(int) { printf(“Hello"); }
void funct(x) { printf(“Hello"); }
None of these
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
Explanation Not Provided
Be The First To Comment