What extern c means?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Why is it usually a bad idea to use gets()? Suggest a workaround.
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Can a local variable be volatile in c?
What is the use of pointers in C?
What will be your course of action for a push operation?
What is the c value paradox and how is it explained?
What is clrscr in c?
What is the difference between typedef struct and struct?
When the macros gets expanded?
What are identifiers c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Differentiate between calloc and malloc.