What oops means?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
what is meant by the "equivalence of pointers and arrays" in C?
What are the different types of control structures?
What is c language & why it is used?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
How can I do serial ("comm") port I/O?
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.
what is the use of a array in c
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is the use of the restrict keyword?
What are control structures? What are the different types?
Why doesnt the call scanf work?