What is \v in c?
#include
1. Identify the incorrect option.
What is the output of the following C program?
int main()
{
short m=9, n=0, p=0;
p+=n+=m;
p+=n+=m+=-p;
printf("%d %d %d",m,n,p);
}
What is the default constructor?
#include <stdio.h> void func(void) { printf("HelloWorld"); } void main() { func(); func(5); }
Consider the following C program.
void f(int, short); void main() { int i = 100; short s = 12; short *p = &s; __________ ; // call to f() }
Which one of the following expressions, when placed in the blank above, will NOT result in a type checking error?
What is an advantage of a Forward iterator over input and output iterators?
Which of the following statements about the const and volatile keywords in C is correct?
Consider a hash table of size seven, with starting index zero, and a hash function (3x + 4) mod 7. Assuming the hash table is initially empty, which of the following is the contents of the table when the sequence 1, 3, 8, 10 is inserted into the table using closed hashing? Note that '_' denotes an empty location in the table.
OnSite
1 Openings
FullTime
Posted 17 days ago