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
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How do you determine the length of a string value that was stored in a variable?
String concatenation
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
What language is lisp written in?
What does s c mean in text?
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.