What is a structure in c language. how to initialise a structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is malloc memset faster than calloc?
What is character constants?
What is the use of getch ()?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Why does notstrcat(string, "!");Work?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is main void in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
what is difference b/w extern & volatile variable??
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5