1#include <stdio.h> 2 3char * text(); 4 5int main(int argc, char * * argv) 6{ 7 printf(text()); 8 return 0; 9}