Answer Posted / susmita
c is a set of instructions or commands, which are given for
the computer to do different activity or jobs or works
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What are the types of c language?
Why void main is used in c?
What are the disadvantages of a shell structure?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is the function of volatile in c language?
How to declare pointer variables?
List the difference between a While & Do While loops?
Explain how do you sort filenames in a directory?
What is the purpose of macro in C language?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is a macro in c preprocessor?
Define VARIABLE?
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); }
How to write a code for reverse of string without using string functions?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);