Meaning of () in c



Meaning of () in c..

Answer / shrikantauti

it means function.
it may be user defined or system defined.

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More C Interview Questions

what is c

4 Answers  


player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion

1 Answers  


int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


What is a static function in c?

0 Answers  


How can I call fortran?

0 Answers  






Difference between fopen() and open()?

3 Answers   Aricent,


Program to find larger of the two numbers without using if-else,while,for,switch

11 Answers   iNautix, Wipro,


input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure

4 Answers   IBM,


How to declare pointer variables?

0 Answers  


wap in c to accept n number display the highest and lowest value

2 Answers  


what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?

4 Answers  


You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?

1 Answers  


Categories