Answer Posted / 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 |
Post New Answer View All Answers
Should a function contain a return statement if it does not return a value?
Tell me about low level programming languages.
What is string function c?
What is the symbol indicated the c-preprocessor?
What is the difference between the expression “++a” and “a++”?
What is assignment operator?
What is the difference between char array and char pointer?
Where are local variables stored in c?
Difference between strcpy() and memcpy() function?
What is anagram in c?
What is pointer and structure in c?
what value is returned to operating system after program execution?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Explain the advantages of using macro in c language?
Write a program to use switch statement.