Write a code to generate a series where the next element is the sum of last k terms.
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I read and write comma-delimited text?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
What is the need of structure in c?
can we execute the program with the object file
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
what do you mean by enumeration constant?
can anyone please tell about the nested interrupts?
Is c procedural or object oriented?
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.
What are the __date__ and __time__ preprocessor commands?
a value that does not change during program execution a) variabe b) argument c) parameter d) none