Answer Posted / braja28
that is one type of temporary storage
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is a pointer variable in c language?
What is the code in while loop that returns the output of given code?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Is that possible to store 32768 in an int data type variable?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
Process by which one bit pattern in to another by bit wise operation is?
What does char * * argv mean in c?
What is an auto variable in c?
How do I convert a string to all upper or lower case?
What is a sequential access file?
What is the collection of communication lines and routers called?
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); }
What are the types of operators in c?
What is the difference between array and pointer in c?
what is the diffrenet bettwen HTTP and internet protocol