Explain high-order and low-order bytes.
What is that continue statement??
How #define works?
WAP to accept first name,middle name & last name of a student display its initials?
what is the similarities between. system call and library function?
4. main() { int c=- -2; printf("c=%d",c); }
Is using exit() the same as using return?
What is the function of volatile in c language?
What is the difference between procedural and functional programming?
What is Your Name :)
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?