multiple of 9 without useing +,* oprator
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / tknowledge05
The above guest is me .. okkkkk....
by the time i solved and executing i was logged out and when i posted the answer it considered guest............
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jeke kumar gochhayat
this program is for any no
#include<stdio.h>
void main()
{
int n,k,c,l,i;
printf("enter the no");
scanf("%d",&n);
printf("which no of multiple u want");
scanf("%d",&l);
k=n;c=n;
for(i=1;i<l;i++)
{
while((n--)>0)
k++;
n=c;
}
printf("the multiple=%d",k);
}
| Is This Answer Correct ? | 0 Yes | 0 No |
What are local static variables? How can you use them?
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
Hi, main() { } Is a user defined function or Built in Functionn
What's the right way to use errno?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Can you subtract pointers from each other? Why would you?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Can u return two values using return keyword? If yes, how? If no, why?
How does placing some code lines between the comment symbol help in debugging the code?