What is the most efficient way to count the number of bits which are set in an integer?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is operator promotion?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
When should we use pointers in a c program?
How do you use a 'Local Block'?
main() { int a; a=++100; printf("%d",a); getch(); }
What are the 32 keywords in c?
why we use pointer in c
What is the difference between printf and scanf )?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
What is the difference between formatted&unformatted i/o functions?
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above