How does variable declaration affect memory?
Answer / glibwaresoftsolutions
The type of data contained in that variable determines how much memory has to be allocated or reserved.
If a variable is designated as "integer type," for instance, 32 bits of memory storage will be set aside specifically for that variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
write a programe to find the factorial of given number using recursion
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Difference between malloc() and calloc() function?
Find greatest of two numbers using macro
Tell me what is the purpose of 'register' keyword in c language?
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
Explain how many levels deep can include files be nested?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Is main a keyword in c?