Answer Posted / senthiltime
Array is a collection of similar data types.
| Is This Answer Correct ? | 289 Yes | 20 No |
Post New Answer View All Answers
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Can we use visual studio for c?
What do you mean by command line argument?
c program to compute AREA under integral
How to Throw some light on the splay trees?
Without Computer networks, Computers will be half the use. Comment.
What are the advantages of c preprocessor?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Write a c program to demonstrate character and string constants?
How can you find out how much memory is available?
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 value of h?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
what type of questions arrive in interview over c programming?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none