Differentiate fundamental data types and derived data types in C.
No Answer is Posted For this Question
Be the First to Post Answer
without using control structures and control structures find the max and min of given 2 nos
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What is a null pointer in c?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
What is a stream water?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
How does pointer work in c?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
What is far pointer in c?
write a C code To reverse a linked list
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack