Explain continue keyword in c
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between a for loop and a while loop? What are it uses?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
Why is main function so important?
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
What is use of #include in c?
How can you be sure that a program follows the ANSI C standard?
How can I increase the allowable number of simultaneously open files?
Write a program that his output * *** *****
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
What is extern variable in c with example?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.