#define f(x)
main()
{
printf("\n%d",f(2+2));
}

Answer Posted / hema

0

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain 'bit masking'?

658


What is "Duff's Device"?

704


Write a program to print fibonacci series using recursion?

591


Discuss the function of conditional operator, size of operator and comma operator with examples.

682


How do you use a 'Local Block'?

728






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.

1205


Which is better between malloc and calloc?

673


Explain what is the benefit of using #define to declare a constant?

614


what is the difference between class and unio?

1866


Which type of language is c?

656


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

687


What is the purpose of sprintf() function?

608


What is string in c language?

630


Is it better to use a macro or a function?

659


Do character constants represent numerical values?

848