What's a "sequence point"?

Answer Posted / guest

The point (at the end of a full expression, or at the ||, &&,
?:, or comma operators, or just before a function call) at
which all side effects are guaranteed to be complete.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How many types of arrays are there in c?

585


What is the function of volatile in c language?

653


What do you understand by normalization of pointers?

611


Is main is user defined function?

583


What library is sizeof in c?

557






Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?

2044


Explain what are the different file extensions involved when programming in c?

624


State the difference between realloc and free.

617


Who developed c language and when?

569


write a program in c language to print your bio-data on the screen by using functions.

6236


How to write a multi-statement macro?

610


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

618


What is structure of c program?

591


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1645


What is void pointers in c?

576