What are the output(s) for the following ?
#include
char *f()
{char *s=malloc(8);
strcpy(s,"goodbye")}
main()
{
char *f();
printf("%c",*f()='A');
}
No Answer is Posted For this Question
Be the First to Post Answer
is it possible to create your own header files?
What are the rules for the identifier?
Is c easier than java?
What are the uses of null pointers?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is the value of c?
How can variables be characterized?
How can I direct output to the printer?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
In which area global, external variables are stored?
void main() { int i=5; printf("%d",i+++++i); }
What is meant by keywords in c?