edited by
300 views
2 votes
2 votes
main() {
    int p=5, *q;
    void*r;
    q=&p;
    r=&p;
    r++;
    print(“%v", r);
}
edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
Anirudh Kaushal asked Apr 6, 2022
191 views
#include<stdio.h struct marks { int p:3; int c:3; int m:2; }; void main() { struct marks s = {2, -6, 5}; printf("%d %d %d", s.p, s.c, s.m); }What does p:3 means here ?
0 votes
0 votes
1 answer
2
Parshu gate asked Nov 19, 2017
359 views
#include<stdio.h>int main(){ int a=2;if(a==2){ a=~a+2<<1; printf("%d",a);}}
2 votes
2 votes
2 answers
3
Parshu gate asked Nov 5, 2017
1,293 views
OPTIONSA)7,19 B) 10,1 C) 10,23 D)10,32
1 votes
1 votes
1 answer
4
Archies09 asked Apr 23, 2017
3,179 views
What will be the output of the program?#include<stdio.h int addmult(int ii, int jj) { int kk, ll; kk = ii + jj; ll = ii * jj; return (kk, ll); } int main() { int i=3, j=4...