Answer Posted / nashiinformaticssolutions
lvalue: A location in memory that can appear on the left-hand side of an assignment.
rvalue: The value assigned to an lvalue.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is s or c?
Explain that why C is procedural?
What is the size of structure in c?
What is the scope of static variable in c?
What is the value of uninitialized variable in c?
When should a type cast be used?
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); }
how to make a scientific calculater ?
What are c header files?
What is auto keyword in c?
Why functions are used in c?
What is linear search?
what is the diffrenet bettwen HTTP and internet protocol
how we can make 3d venturing graphics on outer interface
Why we use break in c?