What is the difference between break and continue?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
break: Exits the loop entirely.
continue: Skips the current iteration and proceeds to the next.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
break: Exits the loop entirely.
continue: Skips the current iteration and proceeds to the next.
| Is This Answer Correct ? | 0 Yes | 0 No |
break: Exits the loop entirely.
continue: Skips the current iteration and proceeds to the next.
| Is This Answer Correct ? | 0 Yes | 0 No |
wats SIZE_T meant for?
What is the difference between a structure and a union?
What is the sizeof () a pointer?
main() {int a=200*200/100; printf("%d",a); }
Can a pointer be volatile in c?
What is structure padding in c?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
Does c have an equivalent to pascals with statement?
What is double pointer in c?
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
What are the application of void data type in c?
Explain main function in c?