Q.1 write aprogram to stack using linklist o insert 40 items?
Q.2 write a program to implement circular queue with help of
linklist?
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
Explain what is a stream?
What is the size of empty structure in c?
What are the different types of pointers used in c language?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What does nil mean in c?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
what is difference between #include<stdio.h> and #include"stdio.h"
What is a symbolic constant?
what is the difference between const volatile int i & volatile const int j;
What does char * * argv mean in c?