why ordinary variable store the later value not the initial
Answer Posted / 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 |
Post New Answer View All Answers
Why does this code crash?
What's the best way of making my program efficient?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is the heap?
What does != Mean in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Is c easy to learn?
Why isnt any of this standardized in c?
What is the size of enum in c?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
What is structure and union in c?
How will you divide two numbers in a MACRO?
What is structure data type in c?
What are dangling pointers in c?