macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
Answer Posted / j
type declaration
| Is This Answer Correct ? | 16 Yes | 10 No |
Post New Answer View All Answers
What is pointer & why it is used?
What is pointer to pointer in c with example?
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:
How are pointers declared in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
How do we print only part of a string in c?
Is it possible to have a function as a parameter in another function?
Are bit fields portable?
What are the disadvantages of c language?
Explain how can I make sure that my program is the only one accessing a file?
Why void main is used in c?
List some applications of c programming language?
What is chain pointer in c?
Where define directive used?
What is the difference between scanf and fscanf?