german oak
I need to do..?
you need to do install linux (debian)
Vladimir
I need to do..?
Declare iterator explicitly
Vladimir
Welcome to C89
L0kzy
It showed this error
Declare a outside of for loop then only initialize it inside the loop to get rid of your error.
Sandy #КИБЕРИНЖЕКТОРЫ
Which languages should i learn to develop an android app ?
Vladimir
Java?
Vladimir
Kotlin?
Sandy #КИБЕРИНЖЕКТОРЫ
java
I am learning java
Sandy #КИБЕРИНЖЕКТОРЫ
Kotlin?
Kotlin is similar to java ?
Anonymous
Which languages should i learn to develop an android app ?
How can you develop anything, if you can't Google?
Anonymous
Which languages should i learn to develop an android app ?
https://duckduckgo.com/?q=programming+language+to+develop+android+app&t=ffab&ia=web
Sandy #КИБЕРИНЖЕКТОРЫ
Anonymous
From the first link: "When it comes time to develop Android apps, the first and most popular option is Java. Java is the official language of Android development, meaning it is the one that has the most support from Google and the one that most apps on the Play Store are built with."
Sandy #КИБЕРИНЖЕКТОРЫ
But only java is enough
Sandy #КИБЕРИНЖЕКТОРЫ
Or c# c++
Sandy #КИБЕРИНЖЕКТОРЫ
Is also necessary
Anonymous
How the fuck do you fail to use search engines? Why do you ask these questions in a C/C++ chat? You can get correct answers to these questions in 10 seconds or so by typing a search query on google.com
🎩
don't be too harsh
🎩
he or she might be a newbie
🎩
for now @sandeshthakur java should be enough
🎩
make sure you're familiar with basic stuffs
Sandy #КИБЕРИНЖЕКТОРЫ
Ok bruce thanks
Anonymous
Is this true...?
klimi
Is this true...?
Please dont do this type of images.
Anonymous
Guys can someone help me out I want to learn C++
I_Interface
ok
Rose is dreaming?)
klimi
is down
Anonymous
#googleit
Any steps for learning it
klimi
like day now
Anonymous
ok
😭
Oleksandr
Any steps for learning it
Stepic/hackerrank/eax/coursera/codecademy/geekbrains
Oleksandr
Oleksandr
google.com
Anonymous
😐😐😐
Lelouch
/stop
Shaji
Program for printing numbers 88,888,8888 in between 50 to 10000
Shaji
Please help me
Mike
Program for printing numbers 88,888,8888 in between 50 to 10000
How about printing 8 for every index of ten
Mike
Eg for <100 for(i=0;i<(log(100)/log(10));i++)
Mike
{Printf("8");}
Oleksandr
How about printing 8 for every index of ten
how are u understand his question?
Mike
how are u understand his question?
I'm interpreting it as the number of eights corresponds to the log to base value of the upper bound
Mike
For 100 2 eights, for 1000 3 eights,for 10000 4 eights
Mike
Oleksandr
is this c++? run like time numbers
Mike
He wanted c++ done it in c .... but it will still work with c++
Mike
Mike
Herez the source code feel free to improve it
Oleksandr
Program for printing numbers 88,888,8888 in between 50 to 10000
#include <iostream> #include <string> void foo(std::size_t low, std::size_t high) { char to_print = 8;// [0-9] std::size_t len_high = std::to_string(high).size(); std::size_t number = 0; for (std::size_t i = 0; i <= len_high; ++i) { if (number >= low && number <= high) std::cout << number << '.'; number = number * 10 + to_print; } std::cout << std::endl; } int main(void) { foo(50, 10000); return (0); }
Astral
will somebody explain me (Finally, C itself provides no input/output facili-ties; there are noREADorWRITEstatements, and no built-in file accessmethods. All of these higher-level mechanisms must be provided by explicitly-called functions. Most C implementations have included a reasonably standardcollectionof such functions)
klimi
ok
Astral
all i\o works through i\o functions which works through i\o syscalls (write\read) > man write > man read
thanks you mean like linux i/o streams? but there is a separate library for functions
klimi
im banning ya
Mat
/ban
klimi
Banned!
Mat
Banned!
😂😂😂
klimi
Another one bites the dust
Mat
Perfect
Vitaliy ◀️TriΔng3l▶️
The magic of CODE 😱
Badugar
Another one bites the dust
Isn't it Rose's task to say that ? 🤔
Vitaliy ◀️TriΔng3l▶️
My Little Pony: Code is Magic
Anonymous
Guys to learn c language How many hours it will take to complete ?
klimi
something in this range
Vladimir
will somebody explain me (Finally, C itself provides no input/output facili-ties; there are noREADorWRITEstatements, and no built-in file accessmethods. All of these higher-level mechanisms must be provided by explicitly-called functions. Most C implementations have included a reasonably standardcollectionof such functions)
It means input/output is not provided by language, there's no language construction for it. You must use system calls to manually operate input/output devices. Printf is just wrapper for `write' system call defined in unistd.h, and it is not exist in windows.