What is the output of the following code- fork() system call
#include <stdio.h>
#include<unistd.h>
int main()
{
if(fork() && fork())
fork();
printf("Hi ");
return 0;
}
What is the output of the following code- fork() system call
#include <stdio.h>
#include<unistd.h>
int main()
{
if(fork() && fork())
fork();
printf("Hi ");
return 0;
}
What are the different types of Network Topology in computer networking?
Write a program to create a class shape with functions to find the area of the shapes. Create derived classes circle, rectangle and trapezoid each having overridden functions area and display. Base class:
W hen we talk about social media, the terms come into our minds are Facebook,…
0 Comments