C Programming and Technical Programming Output

What is the output and why?
#include
int main(){
int i=(char)65;
printf("%d %c %f %d",i,i,i,i);
return 0;
}

Read Solution (Total 10)

C Other Question

write a logic for following series 2,6,15,35,143,221,323,437,.......... void main()
{
int fun();
int i;
i=fun();
printf("%d",i);
}
int fun()
{
_AX=1234;
}