Answer Posted / anil yadav
A pointer is a variable which contains the address in memory of another variable. We can have a pointer to any variable type....
Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is d scanf?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Why is c platform dependent?
What is null character in c?
What are the uses of null pointers?
Can a pointer point to null?
How can I list all of the predefined identifiers?
Explain about the constants which help in debugging?
why do some people write if(0 == x) instead of if(x == 0)?
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 the benefit of using const for declaring constants?
Difference between malloc() and calloc() function?
What is ## preprocessor operator in c?
Where are some collections of useful code fragments and examples?
explain how do you use macro?