How arrays can be passed to a user defined function
No Answer is Posted For this Question
Be the First to Post Answer
What is c value paradox explain?
Explain what is the purpose of "extern" keyword in a function declaration?
What is the newline escape sequence?
develop algorithms to add polynomials (i) in one variable
what is dangling pointer?
How would you sort a linked list?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?
11 Answers CTS, TCS,
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
1 1 12 21 123 321 12344231 how i creat it with for loop??
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
How the C program can be compiled?