How do you determine whether to use a stream function or a low-level function?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
Explain can you assign a different address to an array tag?
Differentiate between the = symbol and == symbol?
What are the different categories of functions in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
find largest element in array w/o using sorting techniques.
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
how to add two numbers without using arithmetic operators?
difference between memcpy and strcpy
create an SINGLE LINKED LISTS and reverse the data in the lists completely