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
What is new line escape sequence?
What is atoi and atof in c?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Is there a way to switch on strings?
How does selection sort work in c?
What is the description for syntax errors?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is difference between array and structure in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Explain Basic concepts of C language?
What is the use of header?
What is the use of bitwise operator?
using for loop sum 2 number of any 4 digit number in c language
what is a function method?give example?
What functions are used for dynamic memory allocation in c language?