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
what is the hexidecimal number of 4100?
what is diffrence between string and character array?
What is the difference between getch() and getche()?
Explain modulus operator.
Which is the best website to learn c programming?
How would you rename a function in C?
Find greatest number out of 10 number without using loop.
Explain what is the difference between a free-standing and a hosted environment?
will u please send me the placement papers to my mail???????????????????
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What is the general form of function in c?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;