Give a fast way to multiply a number by 7

Answer Posted / mani

n=n*7;

Is This Answer Correct ?    9 Yes 47 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does placing some code lines between the comment symbol help in debugging the code?

550


What is the use of pointers in C?

629


What are the different types of control structures?

592


What does %2f mean in c?

685


List some basic data types in c?

567






What are high level languages like C and FORTRAN also known as?

693


In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping

983


Is there a way to switch on strings?

623


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

786


Why is c called "mother" language?

867


Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

1433


If errno contains a nonzero number, is there an error?

813


a program that can input number of records and can view it again the record

1492


Can we initialize extern variable in c?

641


What does 1f stand for?

618