All pastes #2058521 Raw Edit

Miscellany

public text v1 · immutable
#2058521 ·published 2011-05-13 18:01 UTC
rendered paste body
#include<stdio.h>
#include<math.h>

#define LEFT (y) (pow(2,y))

int main()
{
	int a = 6,x;
	printf("Enter b:\n");
	scanf("%d",&x);

	printf("%d",a*(LEFT (x)));
}