void main()
{
char far *farther,*farthest;
printf("%d..%d",sizeof(farther),sizeof(farthest));
}
Answers were Sorted based on User's Feedback
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() { int i=5; printf("%d",i++ + ++i); }
why the range of an unsigned integer is double almost than the signed integer.
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Write a single line c expression to delete a,b,c from aabbcc
{ int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Write a routine to implement the polymarker function
write a program for area of circumference of shapes
what is brs test reply me email me kashifabbas514@gmail.com
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)); }
How we print the table of 3 using for loop in c programing?
void main() { int i=i++,j=j++,k=k++; printf(“%d%d%d”,i,j,k); }
main() { int c=- -2; printf("c=%d",c); }