Answer Posted / m.kirthika
main() is a predefined function because compiler starts
executing only in main() function. It better to press F7
function key after compiling your program because the
control first passes only to main() function
| Is This Answer Correct ? | 0 Yes | 7 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
Is fortran faster than c?
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
What is header file definition?
Are there any problems with performing mathematical operations on different variable types?
Explain how can you avoid including a header more than once?
What are the usage of pointer in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
show how link list can be used to repersent the following polynomial i) 5x+2
Explain how do you determine whether to use a stream function or a low-level function?
Explain the difference between strcpy() and memcpy() function?
What is the use of a ‘ ’ character?
Differentiate abs() function from fabs() function.
Why static is used in c?
What is equivalent to ++i+++j?