Write a code to determine the total number of stops an elevator would take to serve N number of people.
No Answer is Posted For this Question
Be the First to Post Answer
What are high level languages like C and FORTRAN also known as?
What is wild pointer in c with example?
In a header file whether functions are declared or defined?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
how to construct a simulator keeping the logical boolean gates in c
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
How can I call a function, given its name as a string?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What does node * mean?
Which sorting algorithm is the best?
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?