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.
No Answer is Posted For this Question
Be the First to Post Answer
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
What do you mean by c what are the main characteristics of c language?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
Why isnt there a numbered, multi-level break statement to break out
What is difference between array and structure in c?
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
how to find sum of 5 digits in C?
What should not contain a header file?
write a program to add two numbers of any size.....(remember any size)
What is pass by reference in c?
What is the function of volatile in c language?
Explain goto?