Answer Posted / shikha
array is a homogeneous and similar data type.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are enums in c?
What are the advantages of using new operator as compared to the function malloc ()?
Explain pointers in c programming?
Differentiate between Macro and ordinary definition.
Can you please compare array with pointer?
Give me the code of in-order recursive and non-recursive.
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
How can I read and write comma-delimited text?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What are the advantages of c preprocessor?
How arrays can be passed to a user defined function
What is the difference between exit() and _exit() function in c?
How do you print an address?