C14 Predict The Output Or Error In The Codes

  • October 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View C14 Predict The Output Or Error In The Codes as PDF for free.

More details

  • Words: 288
  • Pages: 4
PREDICT THE OUTPUT OR ERROR IN THE CODES BELOW 1.

struct aaa{ struct aaa *prev; int i; struct aaa *next; }; main() { struct aaa abc,def,ghi,jkl; int x=100; abc.i=0;abc.prev=&jkl; abc.next=&def; def.i=1;def.prev=&abc;def.next=&ghi; ghi.i=2;ghi.prev=&def; ghi.next=&jkl; jkl.i=3;jkl.prev=&ghi;jkl.next=&abc; x=abc.next->next->prev->next->i; printf("%d",x); }

2. main() { int i=_l_abc(10); printf("%d\n",--i); } int _l_abc(int i) { return(i++); } 3. main() { char *p; int *q; long *r; p=q=r=0; p++; q++; r++; printf("%p...%p...%p",p,q,r); } 4. {

main()

int i =0;j=0; if(i && j++) printf("%d..%d",i++,j); printf("%d..%d,i,j); } 5. void main() { static int i=5; if(--i){ main(); printf("%d ",i); } } 6. void main() { char a[]="12345\0"; int i=strlen(a); printf("here in 3 %d\n",++i); } 7. main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); } 8. main() { int i=5; printf(“%d”,i=++i ==6); } 9. main() { p[1] = 'c'; printf(p,65); }

char p[ ]="%d\n";

10. void main() { static int i; while(i<=10) (i>2)?i++:i--; printf(“%d”, i); } 11. main() {

int i=10,j=20; j = i, j?(i,j)?i:j:j; printf("%d %d",i,j);

} 12. {

main()

}

int i=5,j=10; i=i&=j&&10; printf("%d %d",i,j);

13. main() {

int i=4,j=7; j = j || i++ && printf("YOU CAN"); printf("%d %d", i, j);

} 14. main() {

}

int a=2,*f1,*f2; f1=f2=&a; *f2+=*f2+=a+=2.5; printf("\n%d %d %d",a,*f1,*f2);

15. char inStr[10] = {0}; To get string input from the keyboard which one of the following is better? 1) gets(inStr) 2) fgets(inStr, sizeof(inStr), fp) 16. . Which version do you prefer of the following two, 1) printf(“%s”,str); 2) printf(str); 17. void main() { int i=10, j=2; int *ip= &i, *jp = &j; int k = *ip/*jp; printf(“%d”,k); } 18. main() { char a[4]="HELLO"; printf("%s",a); } 19. char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); } 20. #include #define a 10 main() { #define a 50 printf("%d",a); }

Related Documents