What is a rvalue?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what will the preprocessor do for a program?
triangle number finding program...
Can we add pointers together?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Explain high-order and low-order bytes.
What is the difference between malloc() and realloc()?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
If null and 0 are equivalent as null pointer constants, which should I use?
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?
What is Function Pointer? Explain with example?
What is the need of structure in c?
How does free() know explain how much memory to release?