Explain can the sizeof operator be used to tell the size of an array passed to a function?
No Answer is Posted For this Question
Be the First to Post Answer
What is c variable?
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"); }
why we are using float in C
how to multiply two number taking input as a string (considering sum and carry )
What are dangling pointers? How are dangling pointers different from memory leaks?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What is the right type to use for boolean values in c?
What is the difference between call by value and call by reference in c?
What are the properties of union in c?
Explain what is a pragma?
What is structure padding and packing in c?