Write a programme using structure that create a record of
students. The user allow to add a record and delete a record
and also show the records in ascending order.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
What are the types of data types and explain?
When was c language developed?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
why we need function pointers?
Is there any book to know about Basics of C Language?