isPowerof(2)
在预期main()
的原因中);错误……这有什么问题?
#include<stdio.h>
#define isPowerof2(n) (!(n & (n-1))
int main(){
int n,p;
clrscr();
printf("\nEnter the number to be Checked:");
scanf("%d",&n);
isPowerof2(n);
printf("%d",p);
getch();
}