Does c have circular shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between array and structure in c?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is the difference between array and linked list in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
write a program to compare 2 numbers without using logical operators?
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; }
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
What is s or c?
Can a program have two main functions?
why do we use # in c-language?
What is pointers in c?