How to find the usage of memory in a c program
What is the use of typedef in c?
write a progam to display the factors of a given number and disply how many prime numbers are there?
What is meant by keywords in c?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
Explain spaghetti programming?
how to find out the inorder successor of a node in a tree??
what is printf
can any one tel me wt is the question pattern for NIC exam
Write programs for String Reversal & Palindrome check
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }