Are the outer parentheses in return statements really optional?
No Answer is Posted For this Question
Be the First to Post Answer
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
hi send me sample aptitude papers of cts?
Differentiate abs() function from fabs() function.
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
What are the 4 types of functions?
what is op? for(c=0;c=1000;c++) printf("%c",c);
What is the difference between %d and %*d in C
how to print a statement in c without use of console statement ,with the help of if statement it should print
Which programming language is best for getting job 2020?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }