How do you search data in a data file using random access method?
No Answer is Posted For this Question
Be the First to Post Answer
what do you mean by inline function in C?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Is there a built-in function in C that can be used for sorting data?
What is the difference between struct and typedef struct in c?
What does static mean in c?
What is difference between Structure and Unions?
Explain what is a pragma?
what is the benefit of c30
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
write a c program to store and print name,address,roll.no of a student using structures?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)