Answer Posted / guest
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{clrscr();
int a,i,r=0;
scanf("%d",&a);
for(i=a;i>0;i--)
r=r-9;
r=abs(r);
printf("%d",r);
getch();
}
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is %g in c?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
why return type of main is not necessary in linux
What are the advantages of c preprocessor?
How to establish connection with oracle database software from c language?
How do you redirect a standard stream?
given post order,in order construct the corresponding binary tree
Differentiate between a for loop and a while loop? What are it uses?
What are the types of pointers?
What does s c mean on snapchat?
What is the description for syntax errors?
What is d'n in c?
Explain the properties of union. What is the size of a union variable
Give me the code of in-order recursive and non-recursive.
int i=10; printf("%d %d %d", i, i=20, i);