MᏫᎻᎯᎷᎷᎬᎠ
taken from Qt source code
Dima
well this is just 2 place jump
MᏫᎻᎯᎷᎷᎬᎠ
what?
MᏫᎻᎯᎷᎷᎬᎠ
Dima
Dima
It’s basically just First = 0, Second = 1, Third = 2, Fourth = 4, Five = 8
Dima
and you can use them as a flags
MᏫᎻᎯᎷᎷᎬᎠ
okay lemme try it
MᏫᎻᎯᎷᎷᎬᎠ
thanks @Neko_cpp
Anonymous
Hi
Dima
Hey
Anonymous
Hey
The second pic is so funny 😂
Dima
I_Interface
Anonymous
I feel difficulty in coding part, how to strong my coding skill plz give some tips nd best book for c for coding
Coder
/warn
Rishabh
Ok
Rishabh
I'll
Rishabh
Please i want also give
Rishabh
/warn
Rishabh
Oukk
Anonymous
hello
Anonymous
Accel
The second pic is so funny 😂
I think it was edited😂
Anonymous
Hi
Anonymous
Anmol
Anonymous
I know
If you do not how to make use of OOP, you do not know C++
Anonymous
Anonymous
What's Overloading constructor explain with some examples??
This question proofs that you know neither c++ nor OOP
Anmol
5 mins
Anmol
Anonymous
1) It does not even compile
Anmol
Anmol
Anonymous
2) it is a simple class that doesn't proof you know c++ or oop
Anmol
Anmol
Anonymous
Stop spamming photos of code
Anmol
Proof
Anonymous
Proof
It is not
Anonymous
Properly doesn't know oop
You know only know how to define class in C++ You know nothing about OOP
Anmol
It is not
I am student ,so i learn c++ (oop)
Anonymous
I am student ,so i learn c++ (oop)
So don't say you know either of it, if you just learn
Anmol
Anonymous
#include<stdio.h> #include<stdlib.h> int main(){ int ch=65; int i,j,k,m; system("cls"); for(i=1;i<=5;i++) { for(j=5;j>=i;j--) printf(" "); for(k=1;k<=i;k++) printf("%c",ch++); ch--; for(m=1;m<i;m++) printf("%c",--ch); printf("\n"); ch=65; } return 0; } Can you explain the concept used here 😅
Anonymous
Sure
Thanks 😃
Anmol
I teach only Russians
Okk some examples provides me what's oop according to you
Anonymous
Yess bro.. i know
So google what OOP is And there will be a ton of examples
Rajul
please any one tell me
Rajul
how to create a dynamic array in c
Rajul
language
Anonymous
language
int *a = (int *) new int[10];
Rajul
this is possible in c
Anonymous
this is possible in c
int *a = realloc(NULL, 10*sizeof(int)); a[9] = 228; int *a = realloc(a, 20*sizeof(int)); printf("%d", a[9]);
Till
this is possible in c
int* data = malloc(10 * sizeof(int)
Rajul
int *a= (int*)mallloc(sizeof(int)*size)
Rajul
is this correct
Till
is this correct
C language - is not correct, use C++
Rajul
i am not famalier with c++
Anonymous
C language - is not correct, use C++
OFC he can use C for education for first time, but its too simple language
Till
i am not famalier with c++
Read book Stephen Pratt prime C++