Answer Posted / guest
sin()
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Why are all header files not declared in every c program?
Can we access the array using a pointer in c language?
what is recursion in C
What does %d do in c?
Is c procedural or functional?
What is the use of c language in real life?
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); }
What is data structure in c programming?
What is a void pointer in c?
Explain what is the stack?
What is the description for syntax errors?
provide an example of the Group by clause, when would you use this clause
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Write a program to print all permutations of a given string.
What are different types of pointers?