A collection of data with a given structure for excepting storing and providing on demand data for multiple users
a) linked list
b) datastructer
c) database
d) preprocessor
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I write functions that take a variable number of arguments?
Write a program that his output 1 12 123
What is c token?
What are the different pointer models in c?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
what is link list?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
How can I make it pause before closing the program output window?
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
How does C++ help with the tradeoff of safety vs. usability?
What is the main differences between C and Embedded C?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }