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).
No Answer is Posted For this Question
Be the First to Post Answer
What does & mean in scanf?
how many argument we can pas in in a function
Write a program to check armstrong number in c?
How can I find out the size of a file, prior to reading it in?
Can main () be called recursively?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
Explain a file operation in C with an example.
What is pass by reference in functions?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
Explain what does a function declared as pascal do differently?