why ordinary variable store the later value not the initial
Answer / sandeep
When Ordinary variable's value changed after initialisation
it's memory will filled with the new value
| Is This Answer Correct ? | 1 Yes | 1 No |
Is sizeof a keyword in c?
What are the advantages of using linked list for tree construction?
How arrays can be passed to a user defined function
What is static memory allocation? Explain
What is meant by recursion?
What are lookup tables in c?
How can I remove the trailing spaces from a string?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
Explain the use of keyword 'register' with respect to variables.