How many bytes are required to create a 3*3 matrix using double pointe
Practice Basic Concept – How many bytes are required to create a 3*3 matrix using double pointer
Practice Basic Concept – How many bytes are required to create a 3*3 matrix using double pointer
Practice Basic Concept – What will be output of the following “c” code?
#include
void main() {
printf("ABCDEFG ");
printf(4+"ABCDEFG");
printf("ABCDEFG"+4);
printf("%c", "ABCDEFG" [4]);
printf("%c", 4["ABCDEFG"]);
}
Practice Basic Concept – C programming approach is
Practice Basic Concept – A c source code file can be
Practice Basic Concept – Recursive Descent parser is a type of
Practice Basic Concept – what is big-endian
Practice Basic Concept – What is the correct prototype of printf function ?
Practice Basic Concept – To scan float a and double b, which scanf() statement will be used?
Practice Basic Concept – To print out a and b given below, which printf() statement will be used ?
float a = 3.14;
double b = 3.14;
Practice Basic Concept – What does main return on successful execution?

Practice Basic Concept – What will be output of the following “C” code?
#include
void main()
{
printf("%d ",printf("FACE"));
}
What will be output of the following “C” code?

Practice Basic Concept – What will be output of the following “C” code?
#include
void main()
{
printf("
ks");
printf("mi a");
printf("
ha n");
}

Practice Basic Concept – Predict the output of following “C” code:
void main()
{
if( printf(""))
printf("Face");
else
printf("Focus");
}

Practice Basic Concept – What is the output for following?
void main()
{
printf("%%%%");
}

Practice Basic Concept – Predict the output of following “C” code:
main()
{
int var=20;
printf("%d,",var);
{
int var=30;
printf("%d",var);
}
}