What is non linear data structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of a conditional inclusion statement in C?
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
Explain what are bus errors, memory faults, and core dumps?
What does node * mean?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
What is difference between static and global variable in c?
How can I run c program?
Explain the concept of "dangling pointers" in C.
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What are the properties of union in c?