code for inverse a matrix
Differentiate Source Codes from Object Codes
How do shell structures work?
Can true be a variable name in c?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What is scope rule of function in c?
How is a pointer variable declared?
different between overloading and overriding
What are the data types present in c?
What is meant by keywords in c?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
which of 'arrays' or 'pointers' are faster?
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.