5 hours ago • Jenny's Lectures CS IT

C++ Quiz Question 31

Which header file is required to use the string class in C++? 

18 hours ago • Jenny's Lectures CS IT

C++ Quiz Question 30

How do you declare a string using string class in C++? 

8 days ago • Jenny's Lectures CS IT

C++ Quiz Question 29

What would be the output of the following code:

@/include
@/include
using namespace std;
int main()
{
  char str1[8]={"Jenny's"};
  char str2[9]={"Lectures"};
  char str3[20]=str1+" "+str2;
  cout<

10 days ago • Jenny's Lectures CS IT

C++ Quiz Question 28

What would be the output of the following code if input given is "Jenny's  Lectures"

 #include 
 #include 
using namespace std;
int main()
{
  string str;
  cin>>str;
  cout<

13 days ago (edited) • Jenny's Lectures CS IT

"Fake it until you make it" I think they took this Quote seriously 😂 

Comment down if you got it 😝

 #devin   #ai   #devinai   #softwareengineer   #jennyslectures 

2 weeks ago • Jenny's Lectures CS IT

C++ Quiz Question 27

Which of the following is correct syntax of using pair p? 

2 weeks ago • Jenny's Lectures CS IT

C++ Quiz Question 27

What would be the output of the following code:

 #include 
using namespace std:
int main()
{
  const int x;
  x=10;
  cout<

3 weeks ago • Jenny's Lectures CS IT

C++ Quiz Question 26

If we don't assign a value to a constant variable when it is declared then.... 

3 weeks ago • Jenny's Lectures CS IT

C++ Quiz Question 25

C++ treats an Array name as: 

3 weeks ago • Jenny's Lectures CS IT

C++ Quiz Question 24

Which of the following gives the memory address of the first element in array arr, an array with 10 elements?