Programming Language: C
Please feel free to share and solve problems of one another in c language.
81)
p(a,b) a #
call(x)
int main()
{
do
{
int i=15,j=3;
printf("%d",p(i-+,+j));
}
while(*(call(625)+3));
return 0;
}
79)
What will be output of the following c program?
static num=5;
int num;
extern int num;
int main()
{
printf("%d",num);
return 0;
}
(A) 5
(B) 10
(C) 0
(D) Compilation error
(E) None of these
#76.
int i;
main(){
int t;
for ( t=4;scanf("%d", &i)-t;printf
("% d\n",i))
printf("%d--",t --);
}
// If the inputs are 0,1,2,3 find the
o/p
Answer:
4--0
3--1
2--2
expln ?
Click here to claim your Sponsored Listing.