When programming in C you’ll typically use all of the following building blocks except __________.

(a) functions from the standard library
(b) functions you create yourself
(c) functions other people have created for you
(d) functions provided by ANSI / ISO


(d) functions provided by ANSI / ISO

Computer Science & Information Technology

You might also like to view...

A TableLayoutView control displays data in a row and columnar format, similar to a spreadsheet.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which of the following is a reason to use a delete query?

A) It ensures that minimal storage space is being used. B) To ensure that you have some sort of data in your tables C) It will allow for real-world changes that can occur within your business. D) Since older data does not serve a purpose in business, you will want to delete data from the database.

Computer Science & Information Technology

To determine if a file or folder exists, use the File class's ____ method.

A. file? B. value C. exist? D. found?

Computer Science & Information Technology

If we store the address of grade[0] in a pointer named gPtr (using the assignment statement gPtr = &grade[0];), then, the expression ____ references grade[0].

A. gPtr(0) B. gPtr C. &gPtr D. *gPtr

Computer Science & Information Technology