How. To pass the entrance test
If the static variable is declared as global, will it be same as extern?
How is a structure member accessed?
what is the c.
Why do we need functions in c?
Who developed c language?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
What is the purpose of type declarations?
How can I find out how much memory is available?
What is the difference between functions getch() and getche()?
What is difference between && and & in c?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5