What will be the result of the following C language program?
main()
{
int a = 0; int b = 20; char x = 1; char y = 10;
if(a,b,x,y)
printf("Welcome");
}

Answer Posted / vinod

It will print "Welcome"

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are there constructors in c?

586


Add Two Numbers Without Using the Addition Operator

349


What is cohesion and coupling in c?

582


What is hashing in c?

635


What is a program flowchart and how does it help in writing a program?

650






What is a struct c#?

595


Explain how do you use a pointer to a function?

634


What are the types of data types and explain?

661


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1253


List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

2296


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.

1468


List a few unconditional control statement in c.

552


What is structure padding and packing in c?

608


What are the features of c language?

614


What are reserved words?

643