艾丁森
A c program on linux calls this lib,it will happen
J
well, it depends, again - what are your constraints? i said it's not reasonable to really have a C application linking in a C++ library (and hence then enabling the runtime), for a C interface, if you could just have that app in C++, as you're already providing a C++ runtime (for that dependency library) anyway
J
if we're talking an embedded system - i'd think twice. if it's a user facing application on a workstation - probably dont care that much
艾丁森
running on linux servers and users' web browsers
艾丁森
Anonymous
Hello, do you guys have a link for C#
J
you're basically doing the opposite of what programming languages did when evolving - you're taking an implementation in a higher abstraction, that supports more features, and covering it behind a very rudimentary interface, while the machinery to run those abstractions is still necessary
艾丁森
J
okay, so, you'll need to explain this application stack of yours more clearly, because previously you said it would be sent to the client, and that javascript in the browser would be calling this, and now you're saying this is gonna execute on the serving host
艾丁森
my english is not very well, let me explain
艾丁森
艾丁森
Anonymous
hi who html dev
Anonymous
js
Roxifλsz 🇱🇹
Anonymous
java
Nazarova Muslibar
Roxifλsz 🇱🇹
Roxifλsz 🇱🇹
Objective-C is cancer, avoid at all costs
Anonymous
java
Nazarova Muslibar
Roxifλsz 🇱🇹
:)
:)
?
Nazarova Muslibar
яхшимисиз
salom raxmat yaxshi
Dima
Lol
Anonymous
guys can someone help with how to implement a travelling matrix problem with obstacles in C++
Vlad
Anonymous
Hi all
I just started coding in c++.
When I came across through 1 problem, the time limit is 2 seconds but my code took 2.01 seconds.
What could be the possible optimisations to reduce that extra 0.01 second
Anonymous
This is my code
Problem statement: for t number of test cases accept t inputs. After than subtract 2 from each Digit and then print.
Approach: given in comments
Gerald
Using:
Int main()
{
Int y;
Scanf("%d", &y);
Printf("charge");
......
....
.....
returned 0;
}
Why is that when i input 7 the out put is:
7
charge
And not
7 charge
Anonymous
Gerald
Anonymous
How
Remove \n after 7 in printf statement. I guess it should work
Gerald
Anonymous
Anunay
Anunay
Just shitty indian meme trends 😂
Gerald
Anonymous
Anonymous
Anonymous
Try again, @GeraldAkankunda
Anonymous
.
Apa kabar nih om om c++?
Vlad
Rajbeer
C program to count frequency of digits in a given number
Rajbeer
#include <stdio.h>
int frequency(number)
{
int count=0,r;
for(int i=0;i<10;i++)
{
while(number!=0)
{
r=number%10;
if (r==i)
{
count++;
}
if(count>0)
{
printf("The Frequency Of %d is %d",r,count);
}
number=number/10;
count=0;
}
return 0;
}
}
int main()
{
int number,call;
printf("enter the number");
scanf("%d",&number);
call=frequency(number);
}
Rajbeer
why its not working can any one help
Renan
Rajbeer
Thanks for tip✔
Renan
Pavel
Amount of digits that are equal to their place?
Anonymous
Hey all, if anyone has any groups talking about HaxeFlixel like this one is bout C/Cpp, a link would be much appreciated
Anonymous
Anonymous
V01D
Anonymous
HaxeFlixel?
Yeah it's an API built on Haxe for making 2D games that can be deployed on numerous platforms
Anonymous
It's my first time using it and I thought if anyone had any links for some useful info on it, it'd be a great help
😁😁
Anyone who clears me the concept of pointera
😁😁
Pointers*
Renan
Roxifλsz 🇱🇹
/warn not your personal army
😁😁
Renan
So voracious
Nothing is an acceptable value. Just be honest. 🙂
😁😁
Lol
Merazi
Bojan_Krdemn
Hi!
Can anybody help?
I have a class - Boggle it has an instance variable gameboard.
I have a class BogglePlay which is for input ouptut to screen.
In BogglePlay i need to access an instance variable gameboard, which is public and of type Grid (or matrix, whatever).
I don't really understand how to access the variable.
What did i do.
I initialised a constructor
Boggle boo (parameter 1, parameter 2);then i wrote this
cout << boo.gameboard.toString2D
𝔸𝕞𝕚𝕣
/get cbook
𝔸𝕞𝕚𝕣
/get ide
Merazi
https://youtu.be/QMYfkOtYYlg
Merazi