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
Why c is called free form language?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What are the types of data structures in c?
program to convert a integer to string in c language'
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Why flag is used in c?
What is extern storage class in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Explain two-dimensional array.
How do you define CONSTANT in C?
What is the equivalent code of the following statement in WHILE LOOP format?
What is the difference between printf and scanf in c?
What is advantage of pointer in c?
Are negative numbers true in c?
Can we access the array using a pointer in c language?