Explain what is the most efficient way to store flag values?
No Answer is Posted For this Question
Be the First to Post Answer
Why shouldn’t I start variable names with underscores?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
write a program to display & create a rational number
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Is array a primitive data type in c?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
1 What is a Data Structure?
what type of errors are checked during compilation
write a program to display the array elements in reverse order in c language
what is array?
Differentiate between declaring a variable and defining a variable?