What's the best way of making my program efficient?
No Answer is Posted For this Question
Be the First to Post Answer
Why clrscr is used in c?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Explain how can I convert a number to a string?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is spaghetti programming?
Differentiate between a for loop and a while loop? What are it uses?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Explain modulus operator.
Do you know what are the properties of union in c?
how to generate the length of a string without using len funtion?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
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