A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
No Answer is Posted For this Question
Be the First to Post Answer
What is #include in c?
How are variables declared in c?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
Wt are the Buses in C Language
What do you understand by friend-functions? How are they used?
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Write a program to swap two numbers without using third variable in c?
What is linear search?
Do you know pointer in c?
What are the properties of union in c?
what is the most appropriate way to write a multi-statement macro?