1,416 views
0 votes
0 votes
The ________ program combines the output of the compiler with various library functions to produce an executable image.

1 Answer

Related questions

5
views
1 answers
0 votes
shivamSK asked 2 hours ago
5 views
#include <stdio.h> int main () { int i, k; int a [8] = {33,34,35,36,37,40,50,38}; for(i = 0; i < 3; i++) { a[i] = a[i] + 1; i=i+1; } ... int i = k/2; a[i] = a[i] - 1; } printf ("%d",i+a[i]); }Numerical Answer ______________________________
108
views
1 answers
0 votes
shivamSK asked 6 days ago
108 views
what is output of c code : assume answer Is numerical...🙂
89
views
2 answers
0 votes
shivamSK asked Jun 8
89 views
answer the output#include <stdio.h> int main() { int x=0; x++; if(--x){ x=x++; if(x){ printf("hello"); }else{ printf("%d",x); } }else{ x=x+5; if(x){ printf("i win x times"); } else{ printf("you win 5 times"); } } return 0; } 
240
views
1 answers
0 votes
Debargha Mitra Roy asked Apr 16
240 views
#include <stdio.h> int main() { int a[3][2] = {1, 3, 5, 7, 9, 11}; int *ptr = a[0]; ptr += sizeof(int); printf("%d", *ptr); return 0; }(Assume size of int to be $2$ bytes.)The output is __________.