how many argument we can pas in in a function
Answer Posted / karthick
infinity
| Is This Answer Correct ? | 10 Yes | 8 No |
Post New Answer View All Answers
How do you define structure?
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.
Explain that why C is procedural?
Explain function?
How can I get back to the interactive keyboard if stdin is redirected?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What is the difference between the local variable and global variable in c?
If errno contains a nonzero number, is there an error?
Explain indirection?
#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); }
In which layer of the network datastructure format change is done
What are control structures? What are the different types?
What is the right way to use errno?
Can a pointer be static?