explain what are actual arguments?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are header files and explain what are its uses in c programming?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
Explain the advantages and disadvantages of macros.
How do you write a program which produces its own source code as its output?
What is wrong in this statement?
How can I return multiple values from a function?
why the execution starts from main function
How can I pad a string to a known length?
what is the definition of storage classes?
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
Write a function that will take in a phone number and output all possible alphabetical combinations
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.