Computer Science, asked by ahnafabid, 3 months ago

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 shifarahman2008
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 atrs7391
0

Answer:

Nothing will be printed.

If you need to know why comment me.

Similar questions