In c language can we compile a program without main() function?
No Answer is Posted For this Question
Be the First to Post Answer
What are structure members?
which type of aspect you want from the student.
List out few of the applications that make use of Multilinked Structures?
Why do we use static in c?
what is the difference between NULL('\0') and 0?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
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).
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
Why is extern used in c?
Explain why C language is procedural?
who is first prime minister in india??
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }