How can you increase the size of a statically allocated array?
No Answer is Posted For this Question
Be the First to Post Answer
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
Write a program to print fibonacci series without using recursion?
how do we remove the printed character in printf statement and write next it it
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.
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
Why C language is a procedural language?
What is array of pointers to string?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
Explain setjmp()?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?