C Programming and Technical

Differentiate between a for loop and a while loop? What
are it uses?

Read Solution (Total 0)

C Other Question

To scan a and b given below, which of the following scanf() statement will you use?
#include
float a;
double b;

Options
1) scanf("%f %f", &a, &b);
2) scanf("%Lf %Lf", &a, &b);
3) scanf("%f %Lf", &a, &b);
4) scanf("%f %lf", &a, &b);
The keyword used to transfer control from a function back to the calling function is

Options
1) switch
2) goto
3) go back
4) return