Declaring a pointer more than once may create a
What is the size of a character type in C and C++?
What will be the output of the following C++ code?
In C Programming which one of the following is string termination character?
A pointer that is not initialized is called _____.
Which is more effective while calling the functions?
The value obtained in a function is returned to the main program using the _______ keyword.
#include <stdio.h>
int main()
{
char p;
char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8};
p = (buf + 1)[5];
printf("%dn", p);
return 0;
}
What will be the output of the following C++ code?
Which of the following statements are true?
int f(float)