a) a file in disk
b) directory path
c) directory in disk
d) none of the mentioned
Answer: c
Explanation: directory in disk
Related Posts
Can we use a function as a parameter of another function? [Eg: void wow(int func())].
Which function definition will run correctly?
Which of the following function declaration is illegal?
Which of the following is a correct format for declaration of function?
What will be the output of the following C code?
#include < stdio.h >
void main()
{
static int x = 3;
x++;
if (x <= 5)
{
printf(“hi”);
main();
}
}What will be the output of the following C code?
#include < stdio.h >
void main()
{
m();
}
void m()
{
printf(“hi”);
m();
}What will be the output of the following C code?
#include < stdio.h >
void main()
{
m();
void m()
{
printf(“hi”);
}
}
Join The Discussion