Answer Posted / biswajit jana
C is a general-purpose computer programming language
developed in 1972 by Dennis Ritchie at the Bell Telephone
Laboratories
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
What is the difference between Printf(..) and sprint(...) ?
Explain what is the difference between text files and binary files?
How to throw some light on the b tree?
Explain what is a static function?
Sir i need notes for structure,functions,pointers in c language can you help me please
What is a nested formula?
What are pointers?
How do I read the arrow keys? What about function keys?
What is %lu in c?
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 do you mean by keywords in c?
Is c programming hard?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Explain how can a program be made to print the name of a source file where an error occurs?
What is the best way to comment out a section of code that contains comments?