Can you pass an entire structure to functions?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to reverse a given number in c language?
Explain how can I manipulate strings of multibyte characters?
How to add two numbers without using semicolon at runtime
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 do you write a program which produces its own source code as its output?
what is the different between if-else and switch statment (other than syntax)
26 Answers CTS, Oracle, Scorpos,
Write a program of prime number using recursion.
Is double link list a linear data structure? If Yes, Why?If No, Why?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
how many argument we can pas in in a function
Write a c program to demonstrate Type casting in c?
Write a program in c to input a 5 digit number and print it in words.