what will be the output of the following program
#include "stdio.h" char * f(); char a = 'a'; int main(int argc, char *argv[]) { char *temp = f(); printf("%s", temp); return 0; } char *f() { return &a; }
Correct Answer:
a
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Correct Answer:
a
need an explanation for this answer? contact us directly to get an explanation for this answer