Answer Posted / kishore kumar naik p
void main(int nArgCount, char *szArgVector[])
{
if(nArgCount != 2)
{
printf("\nWorng number of argument\nSynatx: %s
<filename>",szArgVector[0]);
return;
}
FILE *fp = foepn(szArgVector[1],"r+");
//Process the file here
fclose(fp);
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is object in oop?
What is abstraction in oops?
What is for loop and its syntax?
What are constructors in oop?
What is the benefit of oop?
What is the difference between a constructor and a destructor?
What is the main feature of oop?
What is inheritance and how many types of inheritance?
What is the difference between a mixin and inheritance?
How does polymorphism work?
What is cohesion in oop?
What is polymorphism and types?
What is abstraction example?
Why is there no multiple inheritance?
What language is oop?