Write the Program to reverse a string using pointers.
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find factorial of a number using recursive function.
how can be easily placed in TCS.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
What is a symbolic constant?
How can I implement a delay, or time a users response, with sub-second resolution?
What are the advantages of using linked list for tree construction?
Write a program to print numbers from 1 to 100 without using loop in c?
why programming language C is still used in operating system's kernel??
What is the use of bitwise operator?
what is the difference between getch() and getche()?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array