How is a structure member accessed?
Is this program statement valid? INT = 10.50;
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
How can you find the exact size of a data type in c?
When should structures be passed by values or by references?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What the different types of arrays in c?
Define C in your own Language.
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Explain that why C is procedural?
Explain how can you tell whether a program was compiled using c versus c++?
With the help of using classes, write a program to add two numbers.
Explain what are preprocessor directives?
What is the difference between NULL and NUL?