Answer Posted / ayan
1>c is the procedural language & c++ is the object oriented
programming methodology.
2>In c++ there 3 types of operator u-nary,binary,ternary.
But in c there is only 2 types u-nary,binary.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the c value paradox and how is it explained?
What is a nested loop?
What is register variable in c language?
What are the 4 types of functions?
Write a program to swap two numbers without using a temporary variable?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
What is a spanning Tree?
Can a variable be both constant and volatile?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Are bit fields portable?
What is "Duff's Device"?
What is storage class?
Why is c called c not d or e?
What is c preprocessor mean?
When should the const modifier be used?