C Programming Multiple Choice Questions And Answers
Are you preparing for the next job interviews? If yes, trust me this post will help you also we'll suggest you check out a big collection for Programming Full Forms that may help you in your interview:
List of Programming Full Forms
- unsigned interger
- unsigned character
- character
- None of the above
- results in the printing of a negative integer
- Both A and C
- always prints a positive integer
- prints a value that is implementation dependent
int main()
{
char *ptr1, *ptr2;
printf("%d %d", sizeof(ptr1), sizeof(ptr2));
return 0;
}
- Output : 1 1
- Output : 2 2
- Output : 4 4
- Output : 3 3
- $include<stdio.h>
- &include
- #include<stdio.h>
- None of the above