What will be the output of the following C code? #include < stdio.h >
View Question
What will be the output of the following C code?
#include < stdio.h >
void main()
{
int i = 0;
do
{
printf(“Hello”);
} while (i != 0);
}
What will be the output of the following C code? #include < stdio.h >
View Question
What will be the output of the following C code?
#include < stdio.h >
void main()
{
int i = 0;
while (++i)
{
printf(“H”);
}
}
What will be the output of the following C code? #include < stdio.h >
View Question
What will be the output of the following C code?
#include < stdio.h >
void main()
{
int i = 2;
do
{
printf(“Hi”);
} while (i < 2)
}
What will be the output of the following C code? #include < stdio.h >
View Question
How many times i value is checked in the following C code?
#include < stdio.h >
int main()
{
int i = 0;
while (i < 3)
i++;
printf(“In while loop\n”);
}
How many times i value is checked in the following C code? #include < ...
View Question
How many times i value is checked in the following C code?
#include < stdio.h >
int main()
{
int i = 0;
do {
i++;
printf(“in while loop\n”);
} while (i < 3);
}
How many times i value is checked in the following C code? #include < ...
View Question
What will be the output of the following C code?
#include < stdio.h >
int main()
{
int i = 0;
do {
i++;
printf(“In while loop\n”);
} while (i < 3);
}
What will be the output of the following C code? #include < stdio.h >
View Question
What will be the output of the following C code?
#include < stdio.h >
int main()
{
do
printf(“In while loop “);
while (0);
printf(“After loop\n”);
}
What will be the output of the following C code? #include < stdio.h >
View Question
What will be the output of the following C code?
#include < stdio.h >
int main()
{
while ()
printf(“In while loop “);
printf(“After loop\n”);
}
What will be the output of the following C code? #include < stdio.h >
View Question
What will be the output of the following C code?
#include < stdio.h >
int main()
{
for (int i = 0;i < 1; i++)
printf(“In for loop\n”);
}
What will be the output of the following C code? #include < stdio.h >
View Question