What will be the output of the following C code?
#include < stdio.h >
void main()
{
int i = 0, k;
label: printf(“%d”, i);
if (i == 0)
goto label;
}
a) 0
b) Infinite 0
c) Nothing
d) Error
Answer: b
Related Posts
A data dictionary is created when a __________ created.
An Oracle __________ is a set of tables and views that are used as a read-only reference about the database.
________ is the smallest unit of allocation in an Oracle database.
__________ is a contiguous group of blocks allocated for use as part of a table, index, and so forth.
A tablespace is further broken down into ________
A ________ is a logical grouping of database objects, usually to facilitate security, performance, or the availability of database objects such as tables and indexes.
__________ is the collection of memory structures and Oracle background processes that operates against an Oracle database.
Join The Discussion