While(1)
{
}
when this loop get terminate is it a infinite loop?
Answers were Sorted based on User's Feedback
Answer / senthilmanikandan
It is finite loop...
if loop reaches Stack Overflow then it will automatically
terminated....
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / hemas
yes, it is infinite loop.
it will terminate after stack overflow occur.
| Is This Answer Correct ? | 2 Yes | 0 No |
Why we use int main and void main?
write a 'c' program to sum the number of integer values
how can i sort numbers from ascending order and descending order using turbo c..
Tell me what is the purpose of 'register' keyword in c language?
whether itis a structured language?
Are local variables initialized to zero by default in c?
What are the different types of C instructions?
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
How do I swap bytes?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
difference between ordinary variable and pointer in C?