#include <iostream> #include<cstdlib> using namespace std; void update(int *a,int *b) { cout<<"in function"<<*a<<*b<<endl; int temp = *a; *a = *a + *b; *b = ...
categories: - conversations conversations: - - Good morning, how are you? - I am doing well, how about you? - I'm also good. - That's good to hear. - Yes it is. - - He...
What stupid mistake am I making?
This shouldn't work too right?
How do I improve my logic for making programs?
What should be the output and why?
Why is this working?
data = open('/home/keysang/Desktop/Chatbot4/data/' + files ,'r').readlines()data = open('file from this location' + FILES << what does this files does in the code?
What are the best resources to study C++ and are free?
So nesting of member functions?
Keysang Yonthan: W = 1 || 1 || 0 1|| 0 1 X = 1 && 1 && 0 0 Y = 1|| 1 && 0 1 && 0 0 Z = 1 && 0 || 0 ... Z??
W = 1 || 1 || 0 1|| 0 1 X = 1 && 1 && 0 0 Y = 1|| 1 && 0 1 && 0 0 Z = 1 && 0 || 0 ... Z??
Is this conversation regd. 0,50,0?
What could be an error in this?
How is this not same?
So ++i will not run the default value in its first time but will run the incremented value?
so can we make a list in .yml like this?
Will for(;i;) result into an infinite loop?
So, printf works from right to left?
why do I need a pointer variable?