What are different types of pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Write the syntax and purpose of a switch statement in C.
Give differences between - new and malloc() , delete and free() ?
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 #include stdio h and #include conio h?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
How many types of operator or there in c?
what is the difference between class and unio?
What do you mean by a local block?
What are the rules for the identifier?
What is scope rule in c?
What is typeof in c?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?