×

Loading...

You can try it yourself. I compiled and debugged. No problem.

#include "stdio.h"

char * v()
{
return "result of function v()";
}

main()
{
char * p=v();
printf("%s\n", p);
return;
}
Report

Replies, comments and Discussions: