a parameter passed between a calling program and a called program
a) variable
b) constant
c) argument
d) all of the above
No Answer is Posted For this Question
Be the First to Post Answer
Why c is a mother language?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
input any 4 digit number and find the difference of all the digits?
what is data structure.in linear and non linear data structures which one is better?Explain
What does 2n 4c mean?
How do you define a function?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Write a C program to count the number of email on text
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How to access or modify the const variable in c ?
16 Answers HCL, HP,
In header files whether functions are declared or defined?
write a program that will print %d in the output screen??