You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/c/Basic/C Program to Multiply given...

15 lines
341 B
C

/*
* C program to multiply given number by 4 using bitwise operators
*/
#include <stdio.h>
void main()
{
long number, tempnum;
printf("Enter an integer \n");
scanf("%ld", &number);
tempnum = number;
/* left shift by two bits */
number = number << 2;
printf("%ld x 4 = %ld\n", tempnum, number);
}