Sorry! Posting Assignment is allowed only for commercial accounts.
Send Enquiry
Beyond Knowing
Play Quiz
Sign in
Join Sookshmas
SCafe
SLC Membership
Beyond Knowing
Play Quiz
×
Announcement
×
Claps
Show ascii
Latin1
Recent Posts
MCQ
e-Notes
Questions
Calculations
जीएसटी किस प्रकार का कर है और यह भारत मे कब लाया गया
Posted on
November 22,2022 at 12:24 PM
by
Sonam jain
Civil Services Entrance Exams-Medium-Hindi
6
Score(s)
1
Comment(s)
22
View(s)
#include <stdio.h>
#include <stdlib.h>
int main() {
int a =6,i,n=3;
for (i=0;i<=n;i++){
printf("%d", a+n); }
return 0;
}
Posted on
November 22,2022 at 12:16 PM
by
Vibha R
C Language
Engineering-CS
5
Score(s)
1
Comment(s)
45
View(s)
#include <stdio.h>
#include <stdlib.h>
int main ()
{
Int a=10;
for (a=10;a <=30;++a)
{
printf ("a=%d\n",a);
Posted on
November 22,2022 at 12:11 PM
by
Sanketh.S Raykar
Engineering-IS
Engineering-CS
C Language
6
Score(s)
1
Comment(s)
49
View(s)
#include<stdio.h>
#include<stdlib.h>
int main()
{
int b=15;
for(b=16;b<=20;++b)
printf("%d\n",b);
}
Posted on
November 22,2022 at 12:11 PM
by
Somashekar R
VKIT Bengaluru
Engineering-CS
7
Score(s)
2
Comment(s)
44
View(s)
1.What Will be out put
#include<stdio.h>
#include<stdlib.h>
void main()
{
int a=10;
int i,n;
for(i=0;i<a;i++)
printf("%d\n",a);
}
Posted on
November 22,2022 at 12:08 PM
by
H.sripada rao
Engineering-IS
Engineering-CS
Engineering-EC
Engineering-AI
5
Score(s)
3
Comment(s)
71
View(s)
#include<studio.h>
#include<stdlib.h>
int main()
{
int a=10,i,n,x;
printf("enter the number:");
scanf("%d",&n);
for(i=0;i<n;i++)
x=a*i;
printf("%d",x);
}
Posted on
November 22,2022 at 12:07 PM
by
Sanjay S J
Engineering-IS
Engineering-CS
Engineering Mathematics
VKIT Bengaluru
3
Score(s)
1
Comment(s)
60
View(s)
#include<stdio.h> #include<stdlib.h>
int main()
{
int a=5,b=100;
printf("%d %d %d %d,++a,++a,b--,b--");
}
Posted on
November 22,2022 at 12:06 PM
by
Rishi L
Engineering-CS
Engineering-AI
2
Score(s)
0
Comment(s)
39
View(s)
include<stdio.h>
#include<stdlib.h>
int main()
{
int a=5;
printf("%d%d%d%d",++a,++a,++a,++a);
return 0;
}
Posted on
November 22,2022 at 12:06 PM
by
Gowtham d
VKIT Bengaluru
Engineering-CS
C Language
2
Score(s)
1
Comment(s)
25
View(s)
#include<stdio.h>
#include<stdlib.h>
int main()
{
int a=5 ,b=9;
printf("%d %d %d %d,++a,++a,b--,b--");
}
Posted on
November 22,2022 at 12:05 PM
by
Abhishek G
C Language
Engineering-CS
VKIT Bengaluru
Engineering - AI ML
Engineering-IS
2
Score(s)
1
Comment(s)
30
View(s)
Output of the below code is
include<stdio.h>
int main()
{
int a=10,b=9;
printf("%d%d%d",a++,b++,b++);
}
Option
a)10910
b)1099
c)compile time error
d)run time error
Posted on
November 22,2022 at 12:02 PM
by
Poorvika B.C
Engineering-CS
VKIT Bengaluru
C Language
0
Score(s)
1
Comment(s)
20
View(s)
<
>
Scroll