closed by
299 views

Related questions

113
views
2 answers
1 votes
kirmada asked Jun 20
113 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 _________
232
views
0 answers
0 votes
Sahil_Lather asked Jan 28, 2023
232 views
Consider the following C function executed in an OS with paging where the page size is 4 kilobytes. Further, assume that the system employs a 32-entry direct ... what is the number of TLB misses during the execution of the for loop?0120482
666
views
0 answers
0 votes
Pawan Nirpal asked Oct 29, 2021
666 views
Operator precedence rule for prefix and postfix ++For C programming is the above mentioned article considered as standard, Is there any standard compiler or C standard ... , and are there any more such exceptions, please do let me know?
1.7k
views
1 answers
2 votes
Nishi Agarwal asked Mar 10, 2019
1,672 views
int main() { int m=44; int *p=&m; int &r=m; int n=(*p)++; int *q=p-1; r=--*(p)+1; ++*q; printf("m=%d n=%d r=%d",m,n,r); return 0; } Options:$m=44,\ n=46,\ r=45$m=45,\ n=44,\ r=45$m=46,\ n=44,\ r=46$m=46,\ n=43,\ r=46$