DAYS
HOUR
MINS
SEC
Error
What is the output of the following program ?
#include<stdio.h>
int main(){
signed char c1=130;
signed char c2=-130;
printf("%d %d",c1,c2);
return 0;
}