Answer Posted / sanjeev
size of integer variable is 2 bytes or 16 bits.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is variable initialization and why is it important?
Explain how can I convert a number to a string?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What does *p++ do?
What is an lvalue in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What does != Mean in c?
can we implement multi-threads in c.
Can you assign a different address to an array tag?
Is it valid to address one element beyond the end of an array?
What is meant by initialization and how we initialize a variable?
Can a local variable be volatile in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
what is recursion in C
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.