atoi, which takes a string and converts it to an integer.
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 an volatile variable?
Why c is called a mid level programming language?
What does sizeof function do?
what is the use of operator ^ in C ? and how it works?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
Program to find the absolute value of given integer using Conditional Operators
What is a rvalue?
What is #line in c?
What are the usage of pointer in c?
A C E G H +B D F A I ------------ E F G H D
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }