Tell me what are bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
what is use of loop?
What is the size of enum in c?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
Tell us two differences between new () and malloc ()?
What are the application of c?
What are the keywords in c?
12345 1234 123 12 1
Can you write the function prototype, definition and mention the other requirements.
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
main() { int a[10]; printf("%d",*a+1-*a+3); }
Is c call by value?