Answer Posted / mani
far pointers are of 32 bits.so within the range of 64Kb we
can use this pointer
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the hardest programming language?
What is the use of static variable in c?
How can you access memory located at a certain address?
Is c a great language, or what?
What is the use of header files?
write a program to generate address labels using structures?
what are the different storage classes in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is difference between structure and union?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is the maximum length of an identifier?
What is formal argument?
How do you define a function?
Is it better to use malloc() or calloc()?
How can I copy just a portion of a string?