a construct the"else" part of "if" statement contains anoth "if else" statement is called
a) if-else
b) else-if-else
c) if-else-if-else
d) chain if/if-else-if
No Answer is Posted For this Question
Be the First to Post Answer
What is a const pointer in c?
Explain Doubly Linked Lists?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
how the compiler treats any volatile variable?Explain with example.
Can u return two values using return keyword? If yes, how? If no, why?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
Add Two Numbers Without Using the Addition Operator
can we write a program in c for printf and scanf without using header file stdio.h
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }