Give a fast way to multiply a number by 7
Answer Posted / anveshbanti
void main()
{
int a=i;
printf(enter i value");
scanf("%d",&i)
int res=i*7;
printf("result is " res);
}
| Is This Answer Correct ? | 2 Yes | 19 No |
Post New Answer View All Answers
How do I read the arrow keys? What about function keys?
What are structure members?
What is malloc calloc and realloc in c?
What is meant by int main ()?
What are the types of unary operators?
What is the basic structure of c?
Write a program for Overriding.
What is ponter?
What is string concatenation in c?
What are external variables in c?
What functions are used for dynamic memory allocation in c language?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How can you find the exact size of a data type in c?
Is main an identifier in c?
What is #line in c?