Write a C++ program to generate 10 integer numbers between -
1000 and 1000, then store the summation of the odd positive
numbers in variable call it sum_pos, then find the maximum
digit in this variable regardless of its digits length.
No Answer is Posted For this Question
Be the First to Post Answer
Why pointers are used in c?
What the advantages of using Unions?
What is difference between array and pointer in c?
What is the use of volatile?
What is the use of printf() and scanf() functions?
What is the Purpose of 'extern' keyword in a function declaration?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is a structure and why it is used?
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
What are keywords in c with examples?
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?
Program to display given 3 integers in ascending order