The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point
a) recording pointer
b) offset
c) branching
d) none
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to generate prime factors of a given integer?
Why do we use int main instead of void main in c?
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
3.write a simple program that will output your name,phone number,e-mail address,and academic major on separate lines 1.create an account and a personal directory for your work b.find out how to create a subdirectory on your system.create one called info c.you will use a text editor to type in your programs and data files.some C systems have a built in text editor;others do not.Find out what text editor you will be using and how to access it.create a text file(not a program) containing your name ,address,and telephone number on separate lines.Next,write the brand of computer you are using and the name of the text editor.Then write a paragraph that describes your past experience with computers.save this file in your info directory. d. find out how to print a file on your system .print out and turn in the file you created in (c).
how to compare two strings without using strcmp() function??
What is indirect recursion? give an example?
How do I swap bytes?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
convert 0.9375 to binary
How do you use a 'Local Block'?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
If the size of int data type is two bytes, what is the range of signed int data type?