Linked list is a Linear or non linear explain if linear how
it working as a non linear data structures
No Answer is Posted For this Question
Be the First to Post Answer
how to write a data 10 in address location 0x2000
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
Is boolean a datatype in c?
What is the purpose of sprintf() function?
What's the best way to declare and define global variables?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
what is default constructor?
What is the difference between c &c++?
program to find the ASCII value of a number
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
What is the size of empty structure in c?
suppose there are five integers write a program to find larger among them without using if- else