Explain the advantages of using macro in c language?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What is data type long in c?
Differentiate between a structure and a union.
Is a pointer a kind of array?
how we can say java is platform independent, while we require JVM for that particular Operating System?
How do you write a program which produces its own source code as its output?
Why is c still so popular?
prototype of sine function.
Is that possible to add pointers to each other?
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.
Why are algorithms important in c program?
write a program to print the all 4digits numbers & whose squares must me even numbers?