Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

define c

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


Please Help Members By Posting Answers For Below Questions

What are the types of c language?

975


Why void main is used in c?

996


What are the disadvantages of a shell structure?

1264


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

999


What is the function of volatile in c language?

1068


How to declare pointer variables?

1162


List the difference between a While & Do While loops?

1051


Explain how do you sort filenames in a directory?

982


What is the purpose of macro in C language?

1063


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

3455


What is a macro in c preprocessor?

1050


Define VARIABLE?

1104


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); }

1357


How to write a code for reverse of string without using string functions?

2073


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);

1814