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
Explain the use of fflush() function?
Which is an example of a structural homology?
What does static variable mean in c?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
What is the scope of local variable in c?
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
Write a program in C to reverse a number by recursive function?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
How do you determine if a string is a palindrome?
why we are using float in C
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }