how can we use static and extern?and where can we use this?
Answer Posted / manojkumar
the above answer is write.thanks to vignesh.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is the general form of a C program?
What is a protocol 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 are the difference between a free-standing and a hosted environment?
Is this program statement valid? INT = 10.50;
How can I open a file so that other programs can update it at the same time?
in iso what are the common technological language?
What is calloc() function?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Difference between malloc() and calloc() function?
Is return a keyword in c?
What is %d called in c?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is string length in c?