Explain indirection?
No Answer is Posted For this Question
Be the First to Post Answer
read a number & print all its devisors using c-program?
What are pointers? What are stacks and queues?
main() { float a=3.2e40; printf("%d",a); }
from which concept of 'c', the static member function of 'c++' has came?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
Explain the difference between ++u and u++?
WAP to accept first name,middle name & last name of a student display its initials?
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?
What is the role of this pointer?
How can I access an I o board directly?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV