Is the following statement True or False?
All keywords must be written in lowercase.
What are storage locations in memory represented by?
#include<stdio.h>
int main()
{
printf("%d",sizeof(printf("Abekus")));
return 0;
}
Which of the following concepts make extensive use of arrays?
Which method(s) do we use to append more than one character at a time in C++?
What is the output of the program?
void main()
{
char *str="01234";
while(*str!=NULL&&printf("%d ",*str++));
}
What is virtual inheritance in C++?
Find the error, if any, in the following code:
#define max 5
#define int arr1[max]
main()
{
typedef char arr2[max];
arr1 list = {0, 1, 2, 3, 4};
arr2 name = "name";
printf("%d %s", list[0], name);
}
Which of the following statements is correct?
What is wrong in this statement? scanf("%d",whatnumber);