Which is not valid in C?
1) class aClass{public:int x;}
2) /* A comment */
3) char x=12;
Answer Posted / k.kavitha
class aClass{public:int x;}
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What does #pragma once mean?
In C, What is the #line used for?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
C program to find all possible outcomes of a dice?
What is sizeof c?
When should a type cast be used?
Why is main function so important?
What are the types of arrays in c?
Explain what is dynamic data structure?
Why c is known as a mother language?
how do you execute a c program in unix.
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
what will be the output for the following main() { printf("hi" "hello"); }
What are dangling pointers in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples