main()
{
struct test
{
char c;
int i;
char m;
} t1;
printf("%d %d\n", sizeof(t1), sizeof(t1.c));
}
what is the significance of static storage class specifier?
What is the difference between single charater constant and string constant?
What is enumerated data type in c?
What is difference between array and structure in c?
In how much time you will write this c program? Prime nos from 1 to 1000
How can you increase the size of a dynamically allocated array?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
explain about storage of union elements.
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
List the variables are used for writing doubly linked list program.
How do you determine if a string is a palindrome?
String concatenation