Write a program that an operator and two operands read from input operand operator on the implementation and results display.
No Answer is Posted For this Question
Be the First to Post Answer
What is #define?
Which is the best sort method for library management?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
how to set Nth bit of variable by using MACRO
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Which type of language is c?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Can we assign string to char pointer?
Is null always equal to 0(zero)?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix