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
1 232 34543 4567654 can anyone tell me how to slove this c question
can we change the default calling convention in c if yes than how.........?
What are the properties of union in c?
who is the father of c
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
Why doesn't the code "a[i] = i++;" work?
what is difference between c and c++
what r the cpu registers r ther?
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
define string ?
What is malloc return c?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}