1,418 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

45
views
1 answers
1 votes
kirmada asked 1 day ago
45 views
#include <stdio.h> int main() { // Write C code here int i=10,*p,**q,***r; p=&i; *p=15; q=&p; **q=20; r=&q; ***r=*p+1; printf("%d",i); return 0; }answer the output as integer _________
52
views
1 answers
1 votes
kirmada asked 1 day ago
52 views
#include <stdio.h> int main() { int (*a)[2]; int arr[4][4]={1,2,3,4,6,7,8,9}; a=arr; ++a; printf("%d",**a); return 0; }what is the answer NUMARICAL--------------------------------?
43
views
1 answers
1 votes
shivamSK asked 2 days ago
43 views
#include <stdio.h> void f(int (*x)(int)); int myfoo(int i); int (*foo)(int) = myfoo; int main() { f(foo(10)); } void f( ... i; }sanfoundry C programming Questiona) Compile time errorb) Undefined behaviourc) 10 11d) 10 Segmentation fault 
62
views
2 answers
1 votes