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
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
Why is C called a middle-level language?
How to find the usage of memory in a c program
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
Why shouldn’t I start variable names with underscores?
How to add two numbers with using function?
Explain can you assign a different address to an array tag?
What is the memory allocated by the following definition ? int (*x)();
What does %f mean c?
Why is c used in embedded systems?
what is mean by Garbage collection ? Please answer me. Advance thanks.
how to write a prog in c to convert decimal number into binary by using recursen function,