Answer Posted / dally
#include<stdio.h>
int main()
{
int a=9,b=4;
if(a>b)
{
while(a--)
b = b--;
}
else
printf("Difference is not possible\n") ;
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How do you declare a variable that will hold string values?
Explain how can I write functions that take a variable number of arguments?
Explain what is meant by 'bit masking'?
Why are all header files not declared in every c program?
How can you access memory located at a certain address?
What is hashing in c?
which is an algorithm for sorting in a growing Lexicographic order
a program that can input number of records and can view it again the record
How can I determine whether a machines byte order is big-endian or little-endian?
What are control structures? What are the different types?
What does *p++ do?
What is #include conio h?
How is = symbol different from == symbol in c programming?
How do you initialize pointer variables?
Why main is used in c?