void main()
{
int a=1;
while(a++<=1)
while(a++<=2);
}

Answer Posted / sabir

this program execute at one both while are working becouse
a++ increase value after while statement that by both are
execute at once

Is This Answer Correct ?    13 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is extern storage class in c?

507


What is struct node in c?

612


Is javascript based on c?

588


Why main is used in c?

580


What are the different types of objects used in c?

566






What is scanf_s in c?

626


What is a c token and types of c tokens?

581


What are the types of unary operators?

653


What is the use of a semicolon (;) at the end of every program statement?

759


Explain void pointer?

583


In C programming, what command or code can be used to determine if a number of odd or even?

616


What is header file definition?

561


Is c high or low level?

571


Can a program have two main functions?

564


Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays

1881