systemQuery
Ok
But I m doing it in c++ crud operation
systemQuery
The invite link shows expired
systemQuery
Any other link for ot
Nameful
talk to my boy Klimi
klimi
you are talking here... why have you pmed me that you cannot talk?
klimi
photos are not allowed in this group
Nameful
bruhhhh
klimi
but you can ask your doubts here
Liang
anyone help?
Nameful
anyone help?
looks like you got some C++ source code.
that will be $10
klimi
Liang
?
Liang
$10?
Nameful
You need to copy the array
klimi
you will need to make a full copy of the data structure
Nameful
Since arrays just are pointers
Liang
how to link the L11 and L2?
Nameful
Space complexity?
Liang
L1 TO L2
klimi
indeed, you cannot store more information without increasing the space complexity
Nameful
oh, I see. You could use a data structure that only stores mutations to the array
Nameful
I forgot what those are called though
Liang
the question is L1, L2, L1, L2, L1 ,L2
Nameful
But they're popular in functional programming
Liang
something like that
Liang
why I cant send the picture?
Nameful
Pictures are scary
Liang
i cant send picture on this group
klimi
Yazan
Hello guys
Yazan
I have physics exam
Yazan
Is anyone interested in helping me please
klimi
Yazan
Nameful
klimi
No it's helping
so its not an exam/homework/assigment/task that you are graded / is required by your institution?
Yazan
It is exam
Yazan
But I will need help in it
klimi
It is exam
why don't you ask you professor for help?
klimi
i am sure he will help you out
z
Liang
they are 13631 members here, seem like nobody here
z
It looks normal to me.
DELETED
/rules
Munaa
Hi
I'm full stack developer junior student.
I'm working on project where I do vary controlls on C.
If there is someone can tell me how to control the input of string from the user ,the string must only contains big or small letter.
Better if we use procedures or functions.
Thanks in advance
@@♥️P...A..♥️
Welcome
Anonymous
.
Just a general topic can we get raw data from a graph plotted on a website which is interactive type
If possible can some one guide me plzz
Anonymous
#include <stdio.h>
#include <stdlib.h>
int main()
{
int i=2,d=2;
while(d<100)
{
if(i<=d)
{
if(d%i==0&&i==d)
{
printf("%d",d);
i=2;
d++;
continue;
}
if(d%i!=0)
{
i++;
continue;}
else
break;
}
}
}
Is above code correct for printing prime nos under 100
Anonymous
Munaa
Anonymous
Munaa
What I'm working on it is a big project.
Let I explain the problems I get.
I have an structure
Typedef struct {
Char name [DIM+1]; // dim is a macro
}Example;
Typedef struct {
Example *example
Int nElements
}DynamicArray;
You ask the user to enter his name, he\she can only input letters if the user puts show warning message and make to enter his\her name .
Use Functions or procedures.
Munaa
I have used strcmp
In for loop inside for loop I used if statement.
And isn't working.
Talula
Sivaprabu
#include <stdio.h>
int main() {
int inputValue = -1;
if (!((inputValue == 0) || (inputValue == 1))) {
printf("Error ");
}
return 0;
}
How to #optimize this code ? 😢
Merve
hellooo everyone, ı use uart interrupt, I get data of 7 bytes every 200ms. I want to assign this data to the array. but it doesn't work good.
Yasas
#ot
Merve
if (uart1_receive_flag)
{
uart_gelen[array]=uart1_receive_data;
array++;
uart1_receive_flag = 0;
if(uart_gelen[2]==0x83){
P04=~P04;
}
if (sira>=8){
sira=0;
}}
}}
Merve
is there any problem at here
Sivaprabu
Pavel
Thank you 👍
I haven't checked it, so I can be not right, you can check it easily by building a truth table
https://en.m.wikipedia.org/wiki/Truth_table
Pavel
Anonymous
Can someone tell me how to take inputs in a string and then extract integers from that string in c++ please guide me
For example : I want the user to imter values as -> 1,2,3,4,5 and then extract 1 2 3 4 and 5 from it
Anonymous
Anonymous
Anonymous
Einstein for example I want to take the input of Matrix elements from user but not one by one....
I want the user to enter the elements separated by a comma(,)
Instead of entering like
1
2
3
4
5
6
I want him to enter 1,2,3,4,5,6
And then place those values in the matrix as
1 2 3
4 5 6
Anonymous
Anonymous
Sam
Anyone can give a c program to add two numbers without arguments and return types
Anonymous
#include<stdio.h>
#include<math.h>
int main()
{
float a,b,c,root1,root2,rootpart,denominator;
printf("enter the value of a,b,c\n");
scanf("%f,%f,%f",&a,&b,&c);
rootpart=sqrt(b*b -4*a*c);
denominator=2*a;
root1=(-b + rootpart)/denominator;
root1=(-b - rootpart)/denominator;
printf("ROOT1=%f ROOT2=%f",&root1,root2);
}
output is wrong for root of no.