Is this syntactically correct?
- by Borrito
I have code in one of the source file as follows:
#include <stdio.h>
#include <math.h>
int a ;
int b = 256 ;
int c = 16 ;
int d = 4 ;
int main() {
if ((d <= (b) && (d == ( c / sizeof(a))))
{
printf("%d",sizeof(a) );
}
return 0;
}
I have removed the casts and have simplified on the data names.…