Explain what are global variables and explain how do you declare them?
No Answer is Posted For this Question
Be the First to Post Answer
Why c is called top down?
What is period operator in c?
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
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.
Give me the code of in-order recursive and non-recursive.
What is meant by type casting?
What is meant by high-order and low-order bytes?
to find the closest pair
Write a c program using for loop in switch case?
What is the advantage of an array over individual variables?
character array A[12] can hold
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets