In a switch statement, explain what will happen if a break statement is omitted?
No Answer is Posted For this Question
Be the First to Post Answer
Which is more efficient, a switch statement or an if else chain?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is the role of this pointer?
What are local and global variables?
How can you determine the size of an allocated portion of memory?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
What is data types?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
Explain the difference between struct and union.
For what purpose null pointer used?