write a programe to accept any two number and check the
following condition using goto state ment.if a>b,print a &
find whether it is even or odd and then print.and
a<b,printb.find the sum digits of that number & then
print.if a==b multiply 10 with a & add 20 with b store in c
and then print
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program in Fibonacci series.
What is the data segment that is followed by c?
What is indirect recursion? give an example?
What is the importance of c in your views?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
What is null in c?
What are register variables? What are the advantage of using register variables?
what are the uses of structure?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
can we write a c program with out using main
What is ambagious result in C? explain with an example.