SELF Exam Programming Program

What will be output of following program?
#include
int main()
{
int a = 320;
char *ptr;
ptr = (char *)&a;
printf("%d",*ptr);
return 0;
}

Read Solution (Total 3)

SELF Other Question

What will be the output
main()
{
if(1,0)
{
printf("True");
}
else
{
printf("False");
}
}
What will be output of the following c program?
#include "stdio.h"
int main()
{
int _ = 5;
int __ = 10;
int ___;
___ = _ + __;
printf("%i", ___);
return 0;
}