What does != Mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a multi-statement macro?
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 are the __date__ and __time__ preprocessor commands?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
What is wrong with this program statement?
The statement, int(*x[]) () what does in indicate?
what is the different between if-else and switch statment (other than syntax)
26 Answers CTS, Oracle, Scorpos,
what is data structure.in linear and non linear data structures which one is better?Explain
Is c procedural or object oriented?
What does malloc () calloc () realloc () free () do?