#include<stdio.h>
int main(void)
{
int i=2147483647;
unsigned int j=4294967295;
printf(“%d %d %d\n”,i,i+1,i+2);
printf(“%u %u %u\n”,j,j+1,j+2);
return 0
}
#include<stdio.h>
int main(void)
{
int i=2147483647;
unsigned int j=4294967295;
printf(“%d %d %d\n”,i,i+1,i+2);
printf(“%u %u %u\n”,j,j+1,j+2);
return 0
}
EmbLogic Research & Competency Development Labs
Phone: +91 9818467776, 8527567776, 9650467776
Email: info@emblogic.com
Copyright © EmbLogic Embedded Technologies Pvt. Ltd.
it just gives the warning that this program will give u error, if u try to run it on compiler of c90 or before …
now use gcc -Wall “program_name” and run it