Answer Posted / hussain reddy
120
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
Is c is a high level language?
What is putchar() function?
What is call by reference in functions?
Why is C language being considered a middle level language?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why do we use int main?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is spaghetti programming?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
How can you check to see whether a symbol is defined?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What are header files in c programming?
What is the scope of an external variable in c?
Write a program to print ASCII code for a given digit.
How many types of functions are there in c?