-
```c
#include
#include
struct stu//定义结构体
{
int line;
int colunm;
int num;
struct stu *next;
};
struct stu *Create1(){//初始化矩阵 1
int i=0,j=1;
struct stu *head,*p1,*p2;
p2=p1=(struc…
-
### Answers checklist.
- [X] I have read the documentation [ESP-IDF Programming Guide](https://docs.espressif.com/projects/esp-idf/en/latest/) and the issue is not addressed there.
- [X] I have updat…
-
The C11 standard added few *_s functions, for safer version of scanf and friends. The functions eliminate/close many potentials security holes when using scanf and friends.
any chance of adding the…
-
# include
# include
void birinciproblem()
{
int cap;
float r,hacim;
float pi=3.14;
```
printf("kureinin capini girin:");
scanf("%d",&cap);
r = cap/2.0;
hacim = (4.0/3.0) * pi * r*r…
-
#include
#include
int main(void)
{
setlocale(LC_ALL,"Turkish");
unsigned int hesap numarasi;
unsigned int balans;
int baslangic balansi;
float toplam harcama;
float toplam yatirilan;…
-
I use gcc 11.5.0 with MinGW-w64 12.0.0 and have strange messages
https://github.com/brechtsanders/winlibs_mingw/releases/download/11.5.0posix-12.0.0-msvcrt-r1/winlibs-x86_64-posix-seh-gcc-11.5.0-ming…
-
1. Issue/Feature description - This issue is to be fix syntax error in the code of the c program . Semicolons are missing for the printf and scanf statements.
2. Why this issue to be fixed - This is…
-
### Task Description
Write a program to print 0 if the input x is a multiple of 3, and a multiple of 5, but not a multiple of 7. Otherwise just print 1.
### Input Format
There is one line in the inp…
-
# include
# include
void birinciproblem()
{
```
int cap;
float r,hacim;
float pi;
pi=3.14;
printf("Kurenin capini giriniz:");
scanf("%d" , &cap);
r = cap/2.0;
hacim = (4.0/3.0) * pi *…
-