a character or group of characters that defines a register,or a part of storage
a) memory
b) byte
c) address
d) linear list
No Answer is Posted For this Question
Be the First to Post Answer
Explain how do you print an address?
Example of friendly function in c++
how to find the largest element of array without using relational operater?
every function has return the value?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
program for reversing a selected line word by word when multiple lines are given without using strrev
discuss the steps needed to get a program from source code to executable in a system?
Explain null pointer.
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
What is the meaning of int *x[]();?
Why n++ execute faster than n+1 ?
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)