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
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
WAP – represent a char in binary format
what is object oriental programing?
What is the difference between int main and void main?
What is the use of gets and puts?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
in which language c language is written?
Why main is used in c?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
What is the difference between a structure and a union?
what is the maximum limit of row and column of a matrix in c programming. in linux .