5. What is the output of the following C-code:
# include <stdio, h>
int main()
{ signed char chr; chr = 128;
Printf ("%d\n", chr);
return 0; }
(a) - 128
(b) 128
(c) Depend on complier (d) None of these.
Answers
Answered by
0
Answer:
What will be the output of the following C code: #include <stdio. h> void m (int *p) {int I = 0; for (I = 0;I < 5; I++) printf ("%d\t", p[I]);} void main() {int a [5] = {6, 5, 3}; m(&a);}? Reformatted: #include <stdio.
Similar questions