Is c pass by value or reference?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
Do string constants represent numerical values?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
Explain what are the __date__ and __time__ preprocessor commands?
how many error occurs in C language ?
What is a char in c?
wap to print "hello world" without using the main function.
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
can v write main() { main(); } Is it true?
wt is d full form of c
Why is extern used in c?