Answer Posted / vivek
we can get by convert prog. into sourse code
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
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 the size of array float a(10)?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How many keywords (reserve words) are in c?
Explain what are multibyte characters?
What are the advantages of c preprocessor?
What is variables in c?
What does *p++ do? What does it point to?
What are structure members?
Is it better to bitshift a value than to multiply by 2?
How can I open a file so that other programs can update it at the same time?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is || operator and how does it function in a program?
What are the different types of endless loops?
Do pointers need to be initialized?