1000+ C Questions and Answers Pdf - 2

Question: 6

What is LIFO?

LIFO stands for last-in-first-out.

Question: 7

What is scanf() statement?

The scanf() function gets the value from the user and places it in the appropriate location (address).

Question: 8

What is the header file that provides string handling functions?

The string.h file provides declarations of many string handling functions.

Question: 9

What is the formatting specification of string?

The formatting specification character ā€˜%sā€™ will retrieve characters from the starting address and displays them until it receives a null character.

Question: 10

Give the syntax of assignment statement.

An assignment statement is defined as

Variable = Expression;

A semicolon termination the assignment statement.

Related Questions