char first(int (*) (char, float));
int second(char, float);
int(*p)[5];
q
that accepts a pointer to a character as argument and returns a pointer to an array of integer, can be declared as:int a = 5, *b = &a;
printf("%d", a*b);
little-endian
(meaning, the lower significant digits occupy lower addresses), then the output will be __________.main()
{
int y = 1;
printf("%d", (*(char *)&x));
}
a -> b
is syntactically correct if __________.char *a, *b, c[10], d[10];
a = b;
b = c;
c = d;
d = a;
staircase switch
best explains the?a << 1
is equivalent to __________.
1 complement
is (2^20)-1
. Then the sizeof(int)
, in bits, will be?16
bit then ~0xc5
will be?m
, such that m & 0x3f
equals 0x23
is?calloc(m, n);
is equivalent to?i >= 2
, then the value of j
, will be printed only if?int j = 2; int i;
while((i%j) != 0)
{
j = j+1;
}
if(j < i)
{
printf("%d", j);
}
hypotenuse(a+2, b+3);
__________.#define hypotenuse(a,b) sqrt(a*a + b*b);
Having second thoughts for any code related question?
Try executing the code in our Code Playground