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
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)
#include<stdio.h>
#include<stdlib.h>
Int main()
{
int a=2,b=3,c=4,d=10;
printf("%d %d %d %d",a++,--b,++c,d--);
}
Posted on
November 22,2022 at 12:01 PM
by
Bhavana Ashrit
VKIT Bengaluru
Engineering-CS
Engineering-IS
Engineering - AI ML
C Language
6
Score(s)
3
Comment(s)
61
View(s)
#include<studio.h>
#include<stdlib.h>
int main()
{
int a=10;
printf("%d %d %d %d",++a,++a,++a++a);
}
Posted on
November 22,2022 at 12:01 PM
by
Karthik Bennur
Engineering - AI ML
VKIT Bengaluru
Computer Applications
1
Score(s)
1
Comment(s)
10
View(s)
#include<stdio.h>
#include<stdlib.h>
int main()
{
float y=150.5;
printf("%f%f%f",++y,++y,++y,++y);
}
Posted on
November 22,2022 at 12:01 PM
by
Vaishnavi L
VKIT Bengaluru
0
Score(s)
0
Comment(s)
7
View(s)
#include<stdio.h>
#include<stdlib.h>
int main ()
{
int a=10,b=20,c=30,d=40;
printed("%d %d %d %d",++a,++b,++c,++d);
}
Posted on
November 22,2022 at 12:00 PM
by
Akash R
VKIT Bengaluru
C Language
0
Score(s)
0
Comment(s)
10
View(s)
<
>
Scroll