Recent questions tagged programming

12 votes
3 answers
454
1 votes
1 answer
457
3 votes
2 answers
461
0 votes
0 answers
467
0 votes
0 answers
469
is it correct solution if it is correct please explain it.
0 votes
1 answer
472
0 votes
0 answers
476
1 votes
0 answers
477
what is the result of comparing signed with unsigned number??#include <stdio.h>int main(){ unsigned int a = 5;if(a -1)printf("5 is -1\n"); return 0; }
0 votes
1 answer
478
#include<stdio.h void fun(int *p,int *q) { p=q; *p=q; } int i=0,j=1; int main() { fun(&i,&j); printf("%d%d",i,j); }What will be the output of i and j in 16-bit C Compiler...
0 votes
0 answers
479