How many main () function we can have in a project?
No Answer is Posted For this Question
Be the First to Post Answer
what is the need for main function in c?
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
What is line in c preprocessor?
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
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 Answers Satyam, UNIS, Wipro,
how to find out the reverse number of a digit if it is input through the keyboard?
Is this program statement valid? INT = 10.50;
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
Can you please explain the difference between malloc() and calloc() function?
write a c program for swapping two strings using pointer
Write the syntax and purpose of a switch statement in C.
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?