what will be the out put.
#include
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
2 6543if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
2 10888Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 5394write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
5 14981Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
2579
What is the heap?
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:
Explain null pointer.
What do you mean by a local block?
How can I change the size of the dynamically allocated array?
What are the applications of c language?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
please send me the code for multiplying sparse matrix using c
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What do you mean by Recursion Function?
Why is c called a mid-level programming language?
What is a null string in c?
how to count no of words,characters,lines in a paragraph.
Explain what is the best way to comment out a section of code that contains comments?
Are pointers integer?