Most answered questions in Programming in C

3 votes
3 answers
102
1 votes
3 answers
105
void main() { unsigned char var=0; for(var=0;var<=255;var++) { printf("%d ",var); } }What is output of this code?
0 votes
3 answers
106
0 votes
3 answers
107
Ans is C can anybody justify why compilation error
2 votes
3 answers
108
char *c[] = {"GeksQuiz", "MCQ", "TEST", "QUIZ"}; char cp[] = {c+3, c+2, c+1, c}; char *cpp = cp; int main() { printf("%s ", ++cpp); printf("%s ", * *++cpp+3); printf("...
2 votes
3 answers
109
main() {static char a[3][4] = { "abcd", "efgh", "ijkl"};putchar( a); } a) compilation error b) run time errorc)garbage d) none of these
26 votes
3 answers
110
Match the following:$$\begin{array}{|ll|ll|}\hline P. & \text{static char var ;} & \text{i.} & \text{Sequence of memory locations to store addresses} \\\hline Q. & \text...
0 votes
3 answers
111
0 votes
3 answers
112
0 votes
3 answers
114
#include <stdio.h>int main(void){ void *vp; char ch='g'; char *cp="goofy"; int j=20; vp=&ch; printf("%c",*(char *)vp); vp=&j; printf("%d",...
3 votes
3 answers
117
I am not getting the answer , (11*8*13+67)*4+ base address =400+4844= 5244.But the answer is 5336, please explain.similar question is here: https://gateoverflow.in/29361/...
7 votes
3 answers
118
3 votes
3 answers
119