Examveda

What is the name of the myfile2 file after executing the following C++ code?
#include <stdio.h>
int main ()
{
    int result;
    char oldname[] = "myfile2.txt";
    char newname[] = "newname.txt";
    result = rename(oldname, newname );
    if (result == 0)
        puts ( "success" );
    else
        perror( "Error" );
    return 0;
}

A. name

B. new

C. newname

D. Error

Answer: Option C


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it