void main()

{

char far *farther,*farthest;

printf("%d..%d",sizeof(farther),sizeof(farthest));

}

Answers were Sorted based on User's Feedback



void main() { char far *farther,*farthest; printf("%d..%d",si..

Answer / susie

Answer :

4..2

Explanation:

the second pointer is of char type and not a far pointer

Is This Answer Correct ?    5 Yes 1 No

void main() { char far *farther,*farthest; printf("%d..%d",si..

Answer / jatinder arora

1..1

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Code Interview Questions

void main() { int i=5; printf("%d",i++ + ++i); }

3 Answers  


why the range of an unsigned integer is double almost than the signed integer.

1 Answers  


main() { char *p; p="Hello"; printf("%c\n",*&*p); }

1 Answers  


Write a single line c expression to delete a,b,c from aabbcc

2 Answers   Microsoft,


{ int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

4 Answers  


Write a routine to implement the polymarker function

1 Answers   TCS,


write a program for area of circumference of shapes

1 Answers  


what is brs test reply me email me kashifabbas514@gmail.com

0 Answers  


main( ) { char *q; int j; for (j=0; j<3; j++) scanf(“%s” ,(q+j)); for (j=0; j<3; j++) printf(“%c” ,*(q+j)); for (j=0; j<3; j++) printf(“%s” ,(q+j)); }

1 Answers  


How we print the table of 3 using for loop in c programing?

7 Answers  


void main() { int i=i++,j=j++,k=k++; printf(“%d%d%d”,i,j,k); }

1 Answers  


main() { int c=- -2; printf("c=%d",c); }

1 Answers   TCS,


Categories