main()
{
charx;
while (x=0;x<=255;x++)
printf("\nAscii value %d Character %c,x,x);
}
Answer Posted / abdulhamid
actually iwanna the answer.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Find MAXIMUM of three distinct integers using a single C statement
What is static identifier?
Explain how can I convert a number to a string?
Are negative numbers true in c?
How does selection sort work in c?
Why header file is used in c?
Which type of language is 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:
Differentiate between static and dynamic modeling.
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
How are pointers declared in c?
What is array in c with example?
Define recursion in c.
What is #line in c?