What would happen to X in this expression: X += 15; (assuming the value of X is 5)
No Answer is Posted For this Question
Be the First to Post Answer
What are the salient features of c languages?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
How the processor registers can be used in C ?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What are the types of pointers in c?
what is calloc and malloc?
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.
What header files do I need in order to define the standard library functions I use?
Why cd or dvd are round why not square.
What is the use of sizeof () in c?
If I have a char * variable pointing to the name of a function ..
Where local variables are stored in c?