What is the difference between a function and a method in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
prototype of sine function.
Write a simple code fragment that will check if a number is positive or negative.
What is scanf_s in c?
What are the standard predefined macros?
how to find turn around time in operating system?
Explain how can you check to see whether a symbol is defined?
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
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Define VARIABLE?
Why header files are used?
Why cann't whole array can be passed to function as value.