Computer Science, asked by astha4528, 1 month ago

write example of the following:
this is computer ​

Attachments:

Answers

Answered by RichDiamond
0

Answer:

(i) Header File

#include<stdio. h> (Standard input-output header).

#include<string. h> (String header).

#include<conio. h> (Console input-output header).

#include<stdlib. h> (Standard library header).

#include<math. h> (Math header ).

#include<ctype. h>(Character type header) .

#include<time. h>(Time header).

#include<assert.

(ii) Various Table

A table is a data structure that organizes information into rows and columns. It can be used to both store and display data in a structured format. For example, databases store data in tables so that information can be quickly accessed from specific rows.

iii) Conditional statement

For example, for a shop offering as much a 30% discount for an item: if discount < 11% then print (you have to pay $30) elseif discount<21% then print (you have to pay $20) elseif discount<31% then print (you have to pay $10) end if; The statements of elseif , in Ada, is simply syntactic sugar for else followed by if.

Similar questions