What is the total number of keywords in the C programming language?
What is the minimum number of functions required in a C++ program for it to execute?
#include<stdio.h>
int main()
{
int printf_value = 9;
printf("%d", printf_value);
}
Is the following statement True or False?
The bit representation of the null pointer must have all bits zero.
In C++, how do overloaded operators behave in the context of sequence points?
What will be the output of the following C program?
#include<stdio.h>
int main()
{
for(1;5;2)
printf("Abekus");
return 0;
}
Which of the following is the correct syntax for including a user-defined header file?
What is the purpose of the ios::ate flag in C++?
What is the output of the program?
struct dept1
{
int s;
int e;
} p;
struct dept2
{
struct dept1 new;
int area;
} sales;
int main()
{
p.s = 200;
p.e = 212;
sales.new.e = 222;
printf("%d %d %d", p.s, p.e, sales.new.e);
return 0;
}
Which of the following functions from the 'stdio.h' header can be used in place of printf()?