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
What is the use of getchar() function?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
ABCDCBA ABC CBA AB BA A A
how can we use static and extern?and where can we use this?
Explain the use of function toupper() with and example code?
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
What is the g value paradox?
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
Define recursion in c.
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
What is 1f in c?