See the working of some common math functions like sqrt, pow, log and log10
Rounding and related functions like ceil, floor, round, rint, trunc etc. in c++
Using the specially created modulus function fmod() for fractions like float and double data type.
Using the modf() function to separate the integer and fraction part of fractional value.
Using toupper() and tolower() function for character level conversion in its ascii integer form.
Check for character grouping in the ascii 7 bit range of control character, digit, punctuation, alphabet, alphanumeric, lowercase, uppercase, printable, graphical, white space etc.
Using get() and put functions of I/O stream methods like cin and cout.
Use of functions getline() and write of cin and cout steam I/O objects.
Ronica Jose has started learning C++ and has typed the following program. When she compiled the following code written by her, she discovered that she needs to include some header files to successfully compile and execute it. Write the names of those header files, which are required to be included in the code.
void main() { double X,Times,Result; cin>>X>>Times; Result=pow(X,Times); cout<<Result<<endl; }
( As In Exam - CBSE12A-2018 )
Look at the following C++ code and find the possible output(s) from the optio
( As In Exam - CBSE12A-2017 )
Anil typed the following C++ code and during compilation he found three error
( As In Exam - CBSE12A-2016 )
Ronica Jose has started learning C++ and has typed the following program. Whe
( As In Exam - CBSE12D-2015 )
Observe the following program very carefully and write the names of those he
( As In Exam - CBSE12D-2015 )
Study the following program and select the possible output(s)from the option
( As In Exam - CBSE12A-2015 )
Observe the following program very carefully and write the name of those head
( As In Exam - CBSE12A-2015 )
Study the following program and select the possible output(s) from the optio
( As In Exam - CBSE12D-2017 )
Anil typed the following C++ code and during compilation he found four errors
( As In Exam - CBSE12D-2017 )
Look at the following C++ code and find the possible output(s) from the optio
( As In Exam - CBSE12D-2016 )
Jayapriya has started learning C++ and has typed the following program. When
( As In Exam - CBSE12D-2016 )
Look at the following C++ code and find the possible output(s) from the optio
Write a c++ program to collect an alphabet from the user and then print the n
Write a program to find punctuation in the user given text data. Use the func
Write a program to find punctuation in the user given text data. Use the func
Write a program to collect 5 integer values from user in an integer array an
Mark the name of required C++ header files for each of the following function
Write a program to print hypotenuse of a right angled triangle if base and h
Which of the following math function will return the lowest number as output
Go through the C++ code below and find out the possible outputs from the sugg