🎩
database is your SQL
Anonymous
Dont know what he is talking about but I want to study in advance so that I can keep up with him
S.
No database backend is written in python i guess
🎩
probably be worth looking through the lecture slides
Rhushikesh
0/
Sreerag
Which module will help to write a program in C++ for printing a document using a printer
progmatic99
Why Official docs for c++ are not available like python?
progmatic99
^
??
Anonymous
Hello
Abdul
Heloo
progmatic99
What do you mean official docs?
Like python has its official docs on python.org
Liam
Lol where?
https://isocpp.org/std/the-standard
progmatic99
Ah found the same just now
Anonymous
Any one with dtb firmware?
klimi
English is not everyone’s native language.
For example mine but I can speak wow
Mat
English is not everyone’s native language.
That doesn't mean you shouldn't try to use it properly
klimi
We have that rule actually
I know but I don't want to be too harash
Anonymous
Hi
Dima
/warn what the
Anonymous
How can I manually link gdi32 to my project
Anonymous
HELLO
kλletaa
cringe
Stephanos
Nikolas
wut
kλletaa
good bot
Adarsh
Is this group noob friendly?
Adarsh
great.
Yom
Yes means no one friendly?
Adarsh
🤔
Anonymous
I write checkers but always have issue with some website getting their boolean
Dima
.........
Am java programmer any group is there for java
Dima
No.
.........
Write a c program 1001 and 1010 sum of binary numbers and print output in binary form
Nikolas
Any one tell me
what have you tried so far?
.........
what have you tried so far?
Not yet I am not able to slove
Nikolas
what should be the input of your program and what should be the output ?
.........
It is a interview question.... Today I went to interview on that they asked me to slove
Nikolas
so fixed input? No interaction with the user? That seems strange
Nikolas
you could just hardcode the answer 🤷🏻‍♂️
.........
C Program to Find the Sum of two Binary Numbers This is a C program to Find the Sum of two Binary Numbers. Problem Description This program finds the sum of two binary numbers. Problem Solution 1. Take two binary numbers as input. 2. Add each bits from the two binary numbers separately starting from LSB. 3. The operations may be as follows. a) (0+0)=0, b) (1+0)=1, c) (1+1)=0 and 1 will be remainder.
.........
/*  * C Program to Find the Sum of two Binary Numbers  */ #include <stdio.h>   int main() {   long binary1, binary2; int i = 0, remainder = 0, sum[20];   printf("Enter the first binary number: "); scanf("%ld", &binary1); printf("Enter the second binary number: "); scanf("%ld", &binary2); while (binary1 != 0 || binary2 != 0) { sum[i++] =(binary1 % 10 + binary2 % 10 + remainder) % 2; remainder =(binary1 % 10 + binary2 % 10 + remainder) / 2; binary1 = binary1 / 10; binary2 = binary2 / 10; } if (remainder != 0) sum[i++] = remainder; --i; printf("Sum of two binary numbers: "); while (i >= 0) printf("%d", sum[i--]); return 0; }
Nikolas
so input is not fixed
.........
so input is not fixed
Output:   Enter the first binary number: 100000 Enter the second binary number: 101010 Sum of two binary numbers: 1001010
Nikolas
yeah sure why not
Nikolas
This group never ceases to amaze me ❤️
Dima
Anonymous
Rose is busy
Dima
Rose fuckkk ya
Anonymous
Wtf did I just see
Nyuke
can someone tell me how to generate random binary numbers using c++?
Nyuke
i mean like the output screen displaying random binary numbers
Nyuke
looping wont do anything ig because it will repeat same structures and i want random structures
I_Interface
Anonymous
What have you done? I guess you have some piece of code to show.
Nyuke
Nyuke
i just copied this from somewhere
Nyuke
telling the truth
Anonymous
I didn't understand any single word you said. You seem to have confused random binary numbers and random structures?
Nyuke
this is not working either
Effiom II
Please which should I learn C# or C++