What is an lvalue and an rvalue?
Answer / 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 |
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
What is ctrl c called?
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
What Is The Difference Between Null And Void Pointer?
What are the advantages of using linked list for tree construction?
Who is invented by c?
Do you have any idea how to compare array with pointer in c?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
How can I call a function, given its name as a string?
What is double pointer in c?