Which of the following denotes an empty string?
Modifiers are also known as _____.
Insertion operator is also called
#include<stdio.h>
#include<stdbool.h>
int main()
{
int a=10,b=12;
bool r=((a==b) && printf("Abekus"));
return 0;
}
What is the output of the following C program?
int main()
{
int var = 3;
for(; var++; )
printf("%d", var);
}
What type of error occurs if an input argument is outside the domain over which the mathematical function is defined?
What is the meaning of modularity in programming?
What is an overflow error?
What happens if the following program is executed in C and C++?
#include <stdio.h>
int main(void)
{
const int j = 20;
int *ptr = &j;
printf("*ptr: %d\n", *ptr);
return 0;
}
What will be the output?
#include <stdio.h>
int main()
{
int i, j = 10, k=12;
i = printf("Hello");
printf("%d", i);
i = printf("%d", i);
printf("%d", i);
i=printf("%d %d %d", i, j, k);
printf("%d", i);
return 0;
}