What is a pointer in c?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
A pointer is a variable that stores the memory address of another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
A pointer is a variable that stores the memory address of another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
A pointer is a variable that stores the memory address of another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the difference between #include<> and #include”…”?
Why & is used in scanf in c?
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
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
c program to arrange digits in a no in ascending and descending order
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Explain how do you sort filenames in a directory?
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
How do I use strcmp?
What’s the special use of UNIONS?