How the C program can be compiled?
Answers were Sorted based on User's Feedback
What is a segmentation fault?
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
What is the explanation for prototype function in c?
Is there any data type in c with variable size?
What are qualifiers and modifiers c?
second highest number in a given set of numbers
what type of language is C?
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.
how to write a c program to print list of fruits in alpabetical order?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Do you have any idea how to compare array with pointer in c?
when user give a number it multiply with 9 without useing '+' and '*' oprator