main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / ismail
garbage value
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
What is a char c?
What is spaghetti programming?
Is the exit() function same as the return statement? Explain.
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is #define size in c?
Differentiate Source Codes from Object Codes
Why flag is used in c?
Wt are the Buses in C Language
How is a structure member accessed?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Why c is a procedural language?
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.
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
what are the 10 different models of writing an addition program in C language?
show how link list can be used to repersent the following polynomial i) 5x+2