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
What is the use of c language in real life?
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
What is malloc calloc and realloc in c?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Can anyone tell what is stack overflow? what precaution we should take?
Explain the use of bit fieild.
write a program of bubble sort using pointer?
What is volatile variable in c with example?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
Give me the code of in-order recursive and non-recursive.
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
HOW CAN ADD OUR FUNCTION IN LIBRARY.