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 02d in c?
What is the difference between printf and scanf in c?
What is the difference between text and binary i/o?
Where static variables are stored in c?
#include
Write a program to swap two numbers without using a temporary variable?
Why do we use main function?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Explain the meaning of keyword 'extern' in a function declaration.
What is #line used for?
Is it better to use a macro or a function?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Explain c preprocessor?
What are reserved words with a programming language?