While(1)
{
}
when this loop get terminate is it a infinite loop?
Answer Posted / vignesh1988i
only break statement can do it
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Can you tell me how to check whether a linked list is circular?
When the macros gets expanded?
What is the meaning of && in c?
What is int main () in c?
Explain how can you tell whether two strings are the same?
What will the preprocessor do for a program?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Explain how can a program be made to print the line number where an error occurs?
Why header files are used?
Disadvantages of C language.
In which layer of the network datastructure format change is done
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Can you mix old-style and new-style function syntax?
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.
How do c compilers work?