Answer Posted / gandhi gorantla
Yes we can,try it
class d
{
static{
System.exit(0);
}
}
it compiles and executes without error in java.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What do you know about the use of bit field?
Does c have enums?
What are the advantages of using macro in c language?
What is the difference between #include
How can I implement a delay, or time a users response, with sub-second resolution?
What are the different types of linkage exist in c?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
what is the difference between 123 and 0123 in c?
What are type modifiers in c?
Is main an identifier in c?
What are the advantages and disadvantages of pointers?
When should volatile modifier be used?
What is null pointer constant?
What is a list in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?