Why is c so powerful?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to insert an element at the specified position in the given array in c language
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
write a program to generate 1st n fibonacci prime number
what is the c.
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
Explain what is operator promotion?
Can a local variable be volatile in c?
Program to find the absolute value of given integer using Conditional Operators
What is a union?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What type of function is main ()?
What are the rules for the identifier?