What are types of preprocessor in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is used instead of pointers in java than c?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What does %d do?
biggest of two no's with out using if condition statement
write function to reverse char array ... without using second array
Tell me when would you use a pointer to a function?
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.
Write a program to reverse a given number in c?
What is a constant and types of constants in c?
what is the difference between getch() and getche()?
What is oops c?
What will happen when freeing memory twice