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


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

write a program to print sum of each row of a 2D array.

4 Answers  


What is main return c?

0 Answers  


How can a process change an environment variable in its caller?

0 Answers  


How many data structures are there in c?

0 Answers  


What is a pragma?

0 Answers  






52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?

9 Answers  


c program to arrange digits in a no in ascending and descending order

1 Answers  


typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none

0 Answers  


what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

0 Answers  


How can I find the modification date and time of a file?

0 Answers  


What is the explanation for cyclic nature of data types in c?

0 Answers  


how to reverse string "Hello World" by using pointers only. Without any temp var

1 Answers  


Categories