Answer Posted / rina
pointer contains memory adresses as teir values since tese
memory addresses are the locations in the computer memory
are stored.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why we use conio h in c?
Explain how can I write functions that take a variable number of arguments?
What is ctrl c called?
What is data structure in c programming?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is a function simple definition?
What are Macros? What are its advantages and disadvantages?
What is the role of && operator in a program code?
What is an expression?
What does nil mean in c?
The file stdio.h, what does it contain?
Why is it important to memset a variable, immediately after allocating memory to it ?
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
In c language can we compile a program without main() function?