What does typeof return in c?
No Answer is Posted For this Question
Be the First to Post Answer
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
What is LINKED LIST? How can you access the last element in a linked list?
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 are the different types of errors?
What do you mean by dynamic memory allocation in c? What functions are used?
how many key words availabel in c a) 28 b) 31 c) 32
Are c and c++ the same?
What is the mean of this statement:: if(int i=0 * i=9)
what are the 10 different models of writing an addition program in C language?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
What is structure of c program?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?