Which is not valid in C
a) class aClass{public:int x;};
b) /* A comment */
c) char x=12;
No Answer is Posted For this Question
Be the First to Post Answer
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
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.
int *a[5] refers to
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
what are bit fields in c?
Can you write the function prototype, definition and mention the other requirements.
Is file a keyword in c?
Why doesn't C support function overloading?
Tell me can the size of an array be declared at runtime?
how to find the given number is prime or not?
What is sizeof return in c?
What is operator precedence?