write a c program to print a given number as odd or even
without using loop statements,(no if ,while etc)
Answer Posted / jan
bogoon
| Is This Answer Correct ? | 5 Yes | 15 No |
Post New Answer View All Answers
What are run-time errors?
Explain what are its uses in c programming?
What is the use of a semicolon (;) at the end of every program statement?
What is the value of h?
Array is an lvalue or not?
Do array subscripts always start with zero?
How can I read in an object file and jump to locations in it?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is an array? What the different types of arrays in c?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Write a program of prime number using recursion.
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 difference between char array and char pointer?
How can you determine the size of an allocated portion of memory?
What is define directive?