write a program for 7*8 = 56 ? without using * multiply
operator ? output = 56

Answer Posted / banavathvishnu

int main()
{

printf("%d",7<<3);
getch();
}

Is This Answer Correct ?    30 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

plz let me know how to become a telecom protocol tester. thank you.

1741


What are the 5 data types?

600


How do you determine whether to use a stream function or a low-level function?

648


show how link list can be used to repersent the following polynomial i) 5x+2

1678


How can I handle floating-point exceptions gracefully?

632






a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode

652


What is a macro in c preprocessor?

626


Write a code on reverse string and its complexity.

606


Dont ansi function prototypes render lint obsolete?

603


Why do we use stdio h and conio h?

635


PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE

1466


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

636


Explain what are run-time errors?

607


What is difference between %d and %i in c?

691


a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.

4545