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 |
What are identifiers c?
what is pointer ? what is the use of pointer?
what is c?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
difference between the array and linked list general difference related to memory
what is the difference between global variable & static variable declared out side all the function in the file.
What does %d do in c?
What is the use of getch ()?
What is scope and lifetime of a variable in c?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
convert 0.9375 to binary