what is the different between data structure and data type?
Answer / shalini
data structure is the way of organising and storing the
data, where as data type is the one that defines the
required data for the program requirement.
ex: integer, char,float
| Is This Answer Correct ? | 11 Yes | 1 No |
code for selection sort?
Is r written in c?
. Write a program to get a string and to convert the 1st letter of it to uppercase
What is use of integral promotions in c?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
do you think its fraud or original company?
an algorithem for the implementation of circular doubly linked list
What are the loops in c?
What are the storage classes in C?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?