Answer Posted / arpit
void count()
{
int c=0;
for(i=a;i<=b;i++)
{
c++;
}
return(c);
}
c=b-a :...easy and best .....
| Is This Answer Correct ? | 10 Yes | 5 No |
Post New Answer View All Answers
What is default value of global variable in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Explain what is wrong with this program statement?
Is python a c language?
Is there a way to compare two structure variables?
What should malloc() do?
What is the use of sizeof?
What is boolean in c?
What are the advantages of using new operator as compared to the function malloc ()?
What is pointer & why it is used?
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.
Explain b+ tree?
What is the difference between declaring a variable and defining a variable?
What are different types of pointers?
What is const and volatile in c?