Tech Alchemist
Hey I am a beginner here .i wanna to become web developer .what languages and procedure i should follow for this .
Tech Alchemist
not python and not js definatelly
What i am not getting u?
Tech Alchemist
CSS ?
Dima
its not a language
Dima
do you want to create web-pages just like any hipster or do backend development?
Dima
and well, this is
Dima
#ot
Dima
html is not a programming language
Tech Alchemist
What about Php bro
Tech Alchemist
Thnks bro
Asdew
This conversation may be continued here.
Nikhil
C or c++ can anyone help me out
F
what u want to say...?
Nikhil
what u want to say...?
I want c or c++ code
András
Nikhil
Yes
F
it will be easy by using array
Anonymous
hi anyone knows a java group? I need help 🙏
Dima
lol java exams begun
Anonymous
hi
Anonymous
Anonymous
i tried opening codeblocks but this error pops up
Anonymous
i use linux
Dima
lol
Dima
that one popups on codeblocks launch?
Anonymous
yep
I_Interface
Nice wallpaper btw.
Anonymous
eh
Dima
weebs:)
I_Interface
weebs:)
U are the weeb. 🤔
Anonymous
no but the wallpaper just suited well to my polybar and other apps on the desktop
Asdew
That terminal size and font size...
Asdew
I, on my desktop, use an 11px font in the terminal.
Anonymous
the font gets adjusted when the window's resized
Anonymous
That terminal size and font size...
yuh i just resized the window lul
Nameful
That doesn't sound useful at all
Anonymous
it does
Anonymous
i use a tiling window manager
Nameful
I don't see how that improves matters
Asdew
The font gets adjusted when the window is resized so you always have 20 columns and 15 rows?
Anonymous
idk
Wisenky
anyone could find my issue to getting values not truely ?
Anonymous
i always use the default font size
Asdew
So you use something the function of which you do not know?
Luc
do you know a C language programmer for trading platform Sierrachart? I would like to download the values of the options and automatically create future levels
Dima
Use pastebin Do not send files
it’s allowed unless its an executable file lol
Wisenky
Anonymous
any lightweight ide for c and cpp
Anonymous
with debugger
Anonymous
linux
Anonymous
??
Dima
CodeLite
Dima
vs code with extensions
Anonymous
CodeLite
this has debugger?
Anonymous
Qt Creator
Anonymous
int main(){ int num[10], n, smallest; printf("Enter the size of array"); scanf("%d", &n); read_array(num, n); return 0; } void read_array(int arr[10], int n){ int i; for(i = 0; i<n;i++) { printf("\n arr[%d] = ", i); scanf("%d", &arr[i]); } }
Anonymous
Please anyone expalin the relation between array num and arr
Anonymous
and explain the function how this works
Anonymous
and how the value store in array
Francisco
I don't know what is the problem, but if it's some sort of assignments, not gonna do it for you
Anonymous
int main(){ int num[10], n, smallest; printf("Enter the size of array"); scanf("%d", &n); read_array(num, n); return 0; } void read_array(int arr[10], int n){ int i; for(i = 0; i<n;i++) { printf("\n arr[%d] = ", i); scanf("%d", &arr[i]); } }
num is an array, but arr is not an array. following argument declaration are equivalent: int arr[10] int arr[] int *arr and all of them are pointers, not array. the only way to copy an array is by using a struct containing that array, otherwise it will be converted to pointer
Anonymous
int arr[10] is array int arr[] is pointer when it is a function argument
Anonymous
int arr[10] is array int arr[] is pointer when it is a function argument
according to ISO 9899, a parameter declared to have array or function type is adjusted to have a pointer type...
Anonymous
Well, I got you You were talking about only function parameters?
Anonymous
Then sorry
Anonymous
so how does this work? array in function parameter
Anonymous
kk
Kleber
Hello guys, it is good practice to make code like this: unsigned long flag = 1; fprintf(stderr, "MESSAGE: function(%s, %s, %lu)\n", NULL, NULL, flag);
Kleber
NULL to fprintf function?
Anonymous
NULL to fprintf function?
Definitely no And probably it can cause undefined behavior