Answer Posted / somuburra
it is astructure oriented program.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is the use of a ‘ ’ character?
What is c definition?
In a switch statement, what will happen if a break statement is omitted?
What is scope of variable in c?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is the condition that is applied with ?: Operator?
What are the uses of null pointers?
What is the size of a union variable?
Can we access the array using a pointer in c language?
What are c preprocessors?
Define the scope of static variables.
What is volatile variable in c with example?
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 main () in c?
What is enumerated data type in c?