Why do we use null pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is f'n in math?
What are operators in c?
when to use : in c program?
Is there a way to jump out of a function or functions?
How can you tell whether a program was compiled using c versus c++?
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).
Explain what is #line used for?
What do you mean by dynamic memory allocation in c?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
what is the full form of c language
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program