What are derived data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Which is better malloc or calloc?
Define Array of pointers.
code for inverse a matrix
What is the explanation for modular programming?
How many types of errors are there in c language? Explain
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
char *p="name"; printf(p);
the data type used for unlimited value in c and how to do this program
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
How are pointers declared in c?