What is the output of this code snippet?
    #include stdio.h
int main ()
{
FILE * p;
char buffer[] = { 'a' , 'b' , 'c' };
p = fopen ( "myfile.txt" , "wb" );
fwrite (buffer , 1 , sizeof(buffer) , p );
fclose (p);
return 0;
}

Posted on by