What is your favorite subject?
Explain high-order bytes.
What is typedef?
how we can say java is platform independent, while we require JVM for that particular Operating System?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
What are the different types of C instructions?
What are the various types of control structures in programming?
What are linker error?
Why we use break in c?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
write a program in C to swap two variables
Write a function to find the area of a triangle whose length of three sides is given
Is c procedural or functional?