Kursy
Kursy
Kompilator kodu
Kompilator kodu
Dyskusja
Cennik
Zespoły
Zaloguj się
Zarejestruj się
Menu
Dyskusje Q&A
Szukaj
Szukaj
Zadaj pytanie
Zadaj pytanie
What is <stdio.h>
data-types
1 Głos
7 odpowiedzi
30th Apr 2019, 4:20 AM
Cutiepie
#include<stdio.h> or #include <stdio.h>
basic
c
header
include
programming
0 głosów
4 odpowiedzi
4th Aug 2019, 2:30 AM
Ajinkya Jadhav
#include <conio.h> and #include <stdio.h>
c++
1 Głos
4 odpowiedzi
15th Jan 2017, 8:41 AM
Putu Aryandika Prabana
What is the difference between "stdio.h" & <stdio.h> in c
c
programming
0 głosów
3 odpowiedzi
23rd Nov 2020, 6:02 AM
Samir Imtiaz
what is difference between <iostream>. <stdio.h>
c++
cout
2 głosów
2 odpowiedzi
28th Jul 2016, 2:28 PM
chethan
How to lern to code
<stdio.h>
0 głosów
3 odpowiedzi
3rd Jul 2019, 3:39 AM
sarvesh kohad
Help me understand the output of this code #include <stdio.h> int main() { int x=2; int y=5; printf("%d",x&&y); }
c
5 głosów
15 odpowiedzi
13th May 2021, 7:36 PM
Navin kumar
Where to use iostream, conio, <stdio.h>
c++
0 głosów
3 odpowiedzi
11th Sep 2016, 8:16 AM
vhjrr6udjj
why everyone don't use <stdio.h> ?
c
c++
0 głosów
3 odpowiedzi
15th Jun 2017, 1:32 PM
2815 minwoo
Fatal error <stdio.h> no such file in directory
gcc
0 głosów
7 odpowiedzi
27th Sep 2019, 12:01 AM
Draco Malfoy
What do you prefer: #iclude <stdio.h> vs #include <iostream>?
c
c++
9 głosów
7 odpowiedzi
23rd Jun 2019, 5:27 AM
José Cleto
Can we use <stdio.h> and <conio.h> in C++?
c++
cout
0 głosów
10 odpowiedzi
26th Jul 2016, 1:14 AM
Prachu
what is <stdio.h> n <conio.h> ?
sololearn
0 głosów
1 Odpowiedź
1st Sep 2016, 1:56 PM
Ahsan Abdullah
#include <stdio.h> int main() { printf("%x",-4>>1); return 0; }
and
e
f
in
is
output
what
2 głosów
4 odpowiedzi
17th Mar 2021, 5:58 AM
Ankit Kumar
#include <stdio.h> int main() { printf("\x61"); return 0; }
c
0 głosów
5 odpowiedzi
27th Dec 2018, 2:50 AM
Abdul Rahman Khan
Whats the difference between <stdio.h> and <iostream>?
c++
cout
0 głosów
2 odpowiedzi
1st Nov 2016, 1:39 PM
Naim Uddin
#include <stdio.h> int main() { unsigned char x=300; printf("%d",x); }
unsigned
0 głosów
5 odpowiedzi
19th Jul 2019, 5:10 PM
Rohit Ahuja
What about #include <stdio.h> ?? And what is xp??
c++
2 głosów
4 odpowiedzi
16th Oct 2016, 12:30 PM
kenil
Why in C, we have to start with #include <stdio.h> ?
<
<stdio.h>
>
c
coding
include
sololearn
stdio.h
6 głosów
4 odpowiedzi
15th Dec 2020, 8:45 AM
Carbon dioxide
#include <stdio.h> int main() { do{ printf("Hi"); }while(5,3,0); return 0; }
do
loops
while
0 głosów
7 odpowiedzi
10th Feb 2021, 7:40 PM
Sanjeeb Kumar Rai
What about <stdio.h> i really need it in my studies??
include
0 głosów
3 odpowiedzi
20th Apr 2019, 3:59 PM
Hakim Arab
#include <stdio.h> #define sqr(x) x*x int main() { printf("%d",sqr(3+1)); return 0; }
c
macro
4 głosów
2 odpowiedzi
17th Sep 2020, 11:20 AM
Shaktirajsinh zala
#include <stdio.h> #include <string.h> int main() { string alien; scanf("%s",alien); strrev(alien); printf("%s",alie
c
-1 Głos
11 odpowiedzi
11th Aug 2020, 1:07 PM
PRABHU D
#include <stdio.h> int main() { char a = getchar(); printf("You entered: %c", a); return 0; }
input
output
3 głosów
13 odpowiedzi
10th Mar 2020, 8:13 PM
sagor zia
#include <stdio.h> int main() { int x=1?0:2?3:4; printf("%d",x); return 0; }
operators
0 głosów
4 odpowiedzi
9th Sep 2020, 5:12 AM
Rohit Ahuja
#include <stdio.h> #include <string.h> int main() { char a[100]; int i,j,b=0,c; gets(a); c=strlen(a); for(i=0;i<c;i++)
c
1 Głos
7 odpowiedzi
11th Mar 2020, 9:43 AM
Allepu Madhan mohan
#include <stdio.h> int main() { float a=0.7; if(0.7>a) printf("hi"); else printf("hello"); }
if-statements
1 Głos
3 odpowiedzi
24th Jul 2019, 12:53 PM
Rohit Ahuja
#include <stdio.h> int main() { float f1=0.1; if(f1==0.1) printf ("hello"); else printf ("hi"); }
if-statements
1 Głos
5 odpowiedzi
22nd Jun 2019, 5:16 PM
Rohit Ahuja
#include <stdio.h> int main() { int n=0,m; for(m=1;m<=n+1;m++) printf("%d%d",++m,m++); return 0; }
c
output
0 głosów
3 odpowiedzi
8th May 2022, 5:56 PM
Abhishek Thakur
What is use of #, include, <math.h> , <conio.h> , <stdio.h> ?
c
-1 Głos
5 odpowiedzi
7th Dec 2016, 3:55 AM
TheRed
In school i red that to program we us #include <stdio.h> and #include <conio.h>
c++
cout
4 głosów
13 odpowiedzi
28th Nov 2016, 7:47 AM
Abiral Maharjan
#include <stdio.h> int main() { int a=8, b=0,c=0; if(!a<10&& !b||c) printf("Rahman"); elae printf("abdul"); return 0; }
c
c++
2 głosów
15 odpowiedzi
27th Dec 2018, 4:00 AM
Abdul Rahman Khan
#include <stdio.h> int main() { int x=7%4*3/2; printf("%d \n",x); return 0;}
c
language
0 głosów
1 Odpowiedź
12th Sep 2023, 8:00 AM
ANKIT RAJ
#include <stdio.h> int main() { int a=1; printf ("%d%d%d",a,++a,a++); return 0; }
c
logic
0 głosów
3 odpowiedzi
6th Apr 2022, 4:42 PM
Janvi Desai
what is the purpose of #include <stdio.h> and what is %ld
question
1 Głos
2 odpowiedzi
4th Aug 2020, 3:18 AM
pranay kumar Gadapa
#include <stdio.h> int main() { int n; for(n=7;n!=0;n--) { printf ("n = %d",n--);} getchar(); return 0; }
c
loops
-2 głosów
5 odpowiedzi
11th Jan 2019, 3:05 PM
Devasheesh
#include <stdio.h> int main() { printf("%d"+1, 123); printf("\n%d\n"); printf("%%d"); return 0; }
c
0 głosów
3 odpowiedzi
18th Aug 2017, 4:44 PM
SAURAV KUMAR
#include <stdio.h> #include <conio.h> void main() { clrscr(); int A, B, C; A=5; if(A>5) { }printf ("\n A is greater than
ok
-5 głosów
39 odpowiedzi
24th Nov 2020, 12:36 PM
sumit dubey
include <stdio.h> int main() { unsigned int i; int count=0; for (i=0;i<10;i--) { count++; } printf("%d ",count); return
c?
in
-1 Głos
23 odpowiedzi
7th Feb 2021, 3:48 AM
Ankit Kumar
/*Second largest and Smallest Number in an one dimensional array of size 15 elements*/ #include <stdio.h> //Compiler version
c
c++
html
java
javascript
python
0 głosów
15 odpowiedzi
15th May 2021, 6:31 PM
Vrushabh
include <stdio.h> int main() { char i=0; switch(i) { case '0': printf ("c"); break;
hh
0 głosów
9 odpowiedzi
7th Jan 2021, 8:50 AM
Ankit Kumar
#include <stdio.h> int main() { int i=0; for(i=1;i<=5;i++); printf("%d",i); return 0; }
answer
any
can
code
give
of
this
1 Głos
1 Odpowiedź
30th Dec 2020, 3:59 AM
Ankit Kumar
#include <stdio.h> // Now define main function int main() { int i,j; for(i=1;i<=9;i++) { for(j=1;j<=9;j++) {
c
c++
javascript
python
ruby
-2 głosów
15 odpowiedzi
15th May 2021, 6:24 PM
Vrushabh
#include <stdio.h> int main() { printf("%d",printf ("HelloWorld")); return 0; }
print
question
-3 głosów
2 odpowiedzi
23rd Feb 2018, 4:30 AM
Mahendra Lalani
include <stdio.h> int main() { int b=7,a; a=b++ + ++b+b++ ; printf ("%d\n",a); return 0; }
@sololearn
2 głosów
7 odpowiedzi
22nd Oct 2021, 5:19 AM
Palleni Sasidhar
#include <stdio.h> int main() { int c=50; for(;c;) c--; printf ("c=%d",c); return 0; }
=0
c
why
0 głosów
4 odpowiedzi
27th Dec 2020, 9:43 AM
Ankit Kumar
#include <stdio.h> int main() { float a=0.7; if(a>0.7) printf("condition true"); else printf ("condition false");}
c
4 głosów
2 odpowiedzi
5th Nov 2019, 5:13 PM
Amar kumar
#include <stdio.h> main() { int i; for(i=0;i<5;i+=4) { i=i*i; } printf("ans %d",i); return 0; }
include<stdio.h>
main(
0 głosów
5 odpowiedzi
11th Sep 2020, 9:44 AM
Chauhan Ashutoshkumar Harishankar
#include <stdio.h> int main() { int j=0; for(int i=0; i<100; i++) { j=j++; } printf("%d", j); } Output = 0
c
5 głosów
9 odpowiedzi
7th Dec 2018, 4:37 PM
👑 Ak-king 👑
#include <stdio.h> #define MAX 50 int main() { int a[MAX][MAX], b[MAX][MAX], product[MAX][MAX]; int arows, acolumn
q
0 głosów
6 odpowiedzi
7th May 2021, 2:11 PM
Radha Shinde
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
< Do tyłu
1
2
Dalej >
Popularne dzisiaj
Mobile number and similarity
0 Votes
Can I import any module in python in this app?
0 Votes
The use of these certificates on LinkedIn
1 Votes
GitHub account connecting issue
3 Votes
photo upload issue in html code
0 Votes
Converter minúsculas em maiúsculas e imprimir
0 Votes
Algorithm to create maze-like grid
2 Votes
Coding issue
2 Votes
Loops and conditions
0 Votes
Hardware of computer
3 Votes