When should structures be passed by values or by references?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap two integers 1 and 32767 without using third variable
What is null pointer constant?
What is the relationship between pointers and data structure?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
Explain what is wrong with this statement? Myname = ?robin?;
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???
What is the benefit of using an enum rather than a #define constant?
difference between malloc and calloc
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
How can a string be converted to a number?