What is the output of the following “c” program ?
![]()
Practice Declarations and Initializations – What is the output of the following “c” program ?
#include
void main()
{
int i = 107, x = 5;
printf ((x > 7)? "%d" : "%c:, i)
} ![]()
Practice Declarations and Initializations – What is the output of the following “c” program ?
#include
void main()
{
int i = 107, x = 5;
printf ((x > 7)? "%d" : "%c:, i)
} ![]()
Practice Basic Concept – what is big-endian
![]()
Practice Control Instructions – What is the output of the following “C” program ?
#include
void main()
{
int i= 5;
do {
putchar (i + 100);
printf("%d", i--);
}while(i);
} ![]()
Practice Complicated Declarations – Declare the following statement?
“An array of three pointers to chars”.
![]()
Practice Declarations and Initializations – What is the output of the following program ?
#include
void main()
{
int i= 5;
if (i == 5)
return 0;
else
printf("i is not five");
printf("over");
} ![]()
Practice Complicated Declarations – What do the following declaration signify?
int *ptr[30];
![]()
Practice Declarations and Initializations – What is the output of the following program ?
void main()
{
printf("%d",10?0?5:1:12);
} ![]()
Practice Complicated Declarations – Declare the following statement?
“A pointer to an array of three chars”.
![]()
Practice Control Instructions – What is the output of the following C Program?
#include
void main()
{
for (i = 3; i < 15; i += 3);
printf ("%d", i);
} ![]()
Practice Control Instructions – What is the output of the following C Program?
void main() {for(i = 1; i < 5; i++){if (i == 3)continue;elseprintf ("%d", i);}}
![]()
Practice Pointers – which is the null statement?
![]()
Practice Expressions – Which of the following comments about the ++ operators is (are) correct?
![]()
Practice Basic Concept – What is the correct prototype of printf function ?
![]()
Practice Declarations and Initializations – In C programming language the below statement means.
![]()
Practice Control Instructions – Consider for loop in a C program. If the condition is missing