When do you not use the keyword 'return' when defining a function
a) Always
b) Never
c) When the function returns void
d) dfd
No Answer is Posted For this Question
Be the First to Post Answer
Which weighs more, a gram of feathers or a gram of gold?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
What is the meaning of typedef struct in c?
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
Explain how does flowchart help in writing a program?
main is a predefined or user define function if user defined why? if predefined whay?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
main() { clrscr(); } clrscr();
Explain the difference between malloc() and calloc() in c?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?