What will be printed if the program given
below is executed?
"include <stdio.h>
int main()
{
int i=0;
while (i>1)
{
printf("Rani \n");
}
return 0;
Answers
Answered by
0
Answer:
C doesn't support but C++
There are 4 types of storage classes in C and those are auto, register, extern and static. Every storage class has its own use. Whenever a local variable is declared it is counted in auto storage class. Every storage class variables have some default value. In case of auto its default values is garbage.
We can't modify the value of const variables. Result is compilation error.
Mathematics related functions like pow(), sqrt() belongs to math.h header file.
Answered by
0
Answer:
Nothing will be printed.
If you need to know why comment me.
Similar questions
Math,
1 month ago
English,
1 month ago
English,
3 months ago
Math,
3 months ago
Computer Science,
9 months ago
Social Sciences,
9 months ago
Social Sciences,
9 months ago