Program to open a file with First argument
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 |
string is a class or data type in java?
A file pointer always contains the __________ of the file
You attempt to query the data base with this command: SELECT name, salary FROM employee WHERE salary=(SELECT salary FROM employee WHERE last name='Wagner' OR dept no=233) Choose most appropriate option from the following: 1)Sub-queries are not allowed in the where clause. 2)a multiple row sub-query used with a single row comparison operator. 3)a single row query is used with a multiple row comparison operator.
Why is oop better than procedural?
i have to create a view in SQL as like in ORACLE DATA EXPRESS EDITION
Get me a number puzzle game-program
why constructor cannt be declar virtually? why destructor cannt be overloaded?
explain sub-type and sub class? atleast u have differ it into 4 points?
Why do we use encapsulation in oops?
Write a c++ program to display pass and fail for three student using static member function
Why do we use class?
what is multithreading in c++ , what is difference between multithreading and singlethreading.