Give a fastest way to multiply any
number by 9.
Answer:
#include
<stdio.h>
#include
<conio.h>
void
main()
{
int
n;
printf(“Enter
a number:”);
scanf(“%d”,&n);
printf(“%d”,
(n<<3)+n);
getch();
}A fine place to update the coder in U....