A variable that is defined in a specified portion of a program but can be used throughout the program
a) global variable
b) local variable
c) character
d) none
No Answer is Posted For this Question
Be the First to Post Answer
the question is that what you have been doing all these periods (one year gap)
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
What does stand for?
char ch=10;printf("%d",ch);what is the output
Write a simple code fragment that will check if a number is positive or negative.
How to delete a node from linked list w/o using collectons?
What is the explanation for prototype function in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is function prototype in c language?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.