Hakker
anyone can help?
Francisco
i want to read word from 2nd line in c, using file handling
There's tones of information on the Internet on that topic. C'mon, just put a little effort
🎩
I think first ever intro lessions in education regardless of what industry or field, should be to teach how to google
🎩
because most of the people in developing countries would not know how to google.
Anonymous
What should be the logic behind the program such that the input is aaabbc And we will get output as 3a2b1c
I_Interface
count + a letter
Anonymous
how to join open source communities on github?
Mat
Reach their channels
Anonymous
Wdym?
https://github.com/Asiatik https://github.com/fossasia I want to contribute to their code and be a part of that community
Mat
Answer the questions, make code, participate in their social channels
Mihail
hey the program is getting terminated after throwing a exception, but I don't want to the program to terminate after catch statement, how to overcome this?
You can't continue after an exception has been thrown. After you throw an exception the stack is unwinded and you can't go back to a "working" state
Mihail
It's how Itanium works
Anonymous
Pls give me seminar topics in computer
Dima
Whaaaat
I_Interface
Whaaaat
mb tutorial about how to use your PC ? :D
Dima
mb tutorial about how to use your PC ? :D
Click windows ‘Start’ -> ‘Restart’ -> Boot from Kali Linux
Anonymous
Does anyone have Let Us C book pdf
Anonymous
Also Let Us C Solutions pdf
Anonymous
If anyone can provide pdf
Dima
Read the rules please
Anonymous
Did I say something wrong
Dima
Nothing 🙂 but there are too much people asking for books
Dima
you can easily google it.
Anonymous
Couldn't find that why asked if anyone have
Anonymous
If it seems awkward to you then sorry
Dima
Naw, is this book free at least?
Dima
If not, then you’ll be unable to find it here, there are only free books. piracy :<
U
Which language I should prefer for acmicpc and other competition ?
U
C++, Python or java?
Nikolas
Does anyone have Let Us C book pdf
BTW Let Us C is almost unanimously considered a terrible book: https://www.quora.com/Is-Let-Us-C-a-good-book-for-beginners-in-C-or-should-I-start-with-%E2%80%9CHead-First-C%E2%80%9D https://stackoverflow.com/questions/562303/the-definitive-c-book-guide-and-list (look at warnings) https://www.quora.com/Isnt-Let-Us-C-out-of-date-now (read: “Let Us C” is a book that has corrupted almost every budding C programmer in India. The mistakes, misinformation and sheer lack of depth in the book is astounding.)
U
Or GCJ, FHC, HashCode etc..for all this?
🐰🐾 سمیه
ACMICPC
I dunno that 😶
Anonymous
what does the below statement means, can someone explain in simple words: "There is a necessity to use the single pointer to refer to all the objects of the different classes. So, we create the pointer to the base class that refers to all the derived objects. But, when base class pointer contains the address of the derived class object, always executes the base class function. This issue can only be resolved by using the 'virtual' function."
Anonymous
First read thr virtual function... then you can understand ... easily
this is the first point in why we use virtual functions..
Anonymous
How can I add graphics.h to dev-c++
U
Bcz pf dynamic binding.... if you declare virtual function in base class.... it will overridable....
जगदीश
/
U
Simply declare the members function in the derived class and define a new implimentation for that member function
U
ok thanks 😁👍
Got the point or not? Still confused
U
Bcz your pointer defines only base class function if you declare in base clas... so in base class use virtual function... so that it will override.... then... you can use easily base class pointers in different class also...
Mihail
why i can't back to my workspace after try catch ?
Ah I missed that from the original question. Yes if it is in a catch block then execution will continue normally
Anonymous
Anonymous
Ah I missed that from the original question. Yes if it is in a catch block then execution will continue normally
so if there is no try and catch and the program throws an exception then it will terminate?
Anonymous
How can I add graphics.h to dev-c++
Anonymous
/
Anonymous
Where is the pine message
Anonymous
I am human
Anonymous
No it won't
then what were you saying earlier 👆
Mihail
then what were you saying earlier 👆
What I said applies to if the exception is outside a try block
Anonymous
that is what I was asking 😅. 👍
Dima
Lol
Oumi koursiou
Hello
Oumi koursiou
Please, who are working with raspberry pi.?
Dima
there is a chat for embeeded programming and pi, can’t recall its name
Oumi koursiou
Just started
I dont found documentation for it
Jonathan
there is a chat for embeeded programming and pi, can’t recall its name
Im also looking for a chat for embedded development
Aakriti kaur
Aakriti kaur
Any idea why this is happening
Mihail
You didn't declare foo before you used it
Mihail
Put char foo(); at the top
Dima
put char foo(); before int main() or move that func
Dima
Ah
Anonymous
You didn't declare foo before you used it
jupp, you have to declare a prototype before you can use it
Mihail
Also yeah
Mihail
But there an implicit conversion will be done