51.
Suppose we transfer a file written on a little endian machine to a big endian machine and there is no transformation from little endian to big endian, then what happens?

53.
What will be the output of the following C code?
#include<stdio.h>
static inline int max(int a, int b) 
{
  return a > b ? a : b;
}
main()
{
    int m;
    m=max(-6,-5);
    printf("%d",m);
}

55.
What is the output of this C code?
#include <stdio.h>
main()
{
    char *p = "Examveda C-Test";
    p[0] = 'a';
    p[1] = 'b';
    printf("%s", p);
}

56.
The following C code results in an error. State whether this statement is true or false.
#include <stdio.h>
void f(double b) 
{
    printf ("%ld\n",b);
}
int main() 
{
     inline f(100.56);
     return 0;
}

60.
What will be the error in the following C code?
main()
{
    long float a=-25.373e22;
    printf("%lf",a);
}