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 the meaning of int *x[]();?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
How can I invoke another program from within a C program?
what is c
program to convert a integer to string in c language'
Is c easy to learn?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What was noalias and what ever happened to it?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
What is %lu in c?