The return type of uncaught_exception() is _____.
Which function is used to check whether a character is hexadecimal?
Which C++ standard library function is used to increment an iterator by a particular value?
What is the correct value to return to the operating system upon the successful completion of a program?
The pointer can point to any variable that is not declared with which of these?
What is an infinite loop?
How is a template class different from a normal class?
Encapsulation is a technique of -
Which of the following statements are false?
#include <bits/stdc++.h>
using namespace std;
int main()
{
// char array of numbers
char str1[] = "5672345";
long int num1 = atol(str1);
cout << num1 << "\n";
char str2[] = "10000002 0";
long int num2 = atol(str2);
cout << num2 << "\n";
return 0;
}
OnSite
1 Openings
FullTime
Posted 17 days ago