What will be the output of
x++ + ++x?

Answer Posted / sairoong.l@drsomchai.net

Test Sairoong

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where can I get an ansi-compatible lint?

634


What are compound statements?

622


What is const keyword in c?

734


Explain how do you list files in a directory?

610


if p is a string contained in a string?

1398






Why doesnt the call scanf work?

658


How can you pass an array to a function by value?

597


Which node is more powerful and can handle local information processing or graphics processing?

813


What is the difference between malloc calloc and realloc in c?

642


What is call by value in c?

550


the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?

554


Can a pointer be volatile in c?

527


With the help of using classes, write a program to add two numbers.

612


What library is sizeof in c?

557


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

908