What will be the output of the following C code?
#include < stdio.h >
int m()
{
printf(“hello”);
}
void main()
{
int k = m();
printf(“%d”, k);
}
a) hello5
b) Error
c) Nothing
d) Junk value
Answer: a
Related Posts
The DMA controller has _______ registers.
After the completion of the DMA transfer, the processor is notified by __________
In DMA transfers, the required signals and addresses are given by the __________
The DMA transfers are performed by a control circuit called as __________
The DMA differs from the interrupt mode by __________
How is a privilege exception dealt with?
A privilege exception is raised __________
Join The Discussion