string reverse using recursion
No Answer is Posted For this Question
Be the First to Post Answer
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
Write a program to reverse a linked list in c.
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
What is c programing language?
What is Function Pointer? Explain with example?
What is a rvalue?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
Difference between linking and loading?
how to write optimum code to divide a 50 digit number with a 25 digit number??
How to implement variable argument functions ?
What is the symbol indicated the c-preprocessor?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }