count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be
a) 0
b) 11
c) 55
d) array
No Answer is Posted For this Question
Be the First to Post Answer
What does c value mean?
What is the easiest sorting method to use?
Are there namespaces in c?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
What is the difference between procedural and functional programming?
What is the difference between int main and void main?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
what is the differance between pass by reference and pass by value.
Write a progarm to find the length of string using switch case?
What are control structures? What are the different types?
What is hashing in c language?