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
I came across some code that puts a (void) cast before each call to printf. Why?
input any 4 digit number and find the difference of all the digits?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
What is the purpose of main( ) in c language?
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
What is a union?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
When is the “void” keyword used in a function?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
Famous puzzles which are generally asked by companies during interviews ?
create an SINGLE LINKED LISTS and reverse the data in the lists completely