a=10;b= 5;c=3;d=3;
if(a printf(%d %d %d %d a,b,c,d)
else printf("%d %d %d %d a,b,c,d);
Answer / Binay Kumar
The program will always print '10 5 3 3 10' because the if condition (a >= 5) is not satisfied.
| Is This Answer Correct ? | 0 Yes | 0 No |
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
where do we use volatile keyword?
What is the purpose of #pragma directives in C?
What do you mean by Recursion Function?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Write a program that can show the multiplication table.
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
What will happen when freeing memory twice
What is volatile variable in c?
Are the variables argc and argv are local to main?
What is the use of bit field?
how to write a bubble sort program without using temporary variable?