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...


which operator having highest precedence?
a.)+ b.)++ c.)= d.)%

Answers were Sorted based on User's Feedback



which operator having highest precedence? a.)+ b.)++ c.)= d.)% ..

Answer / siva

++

Is This Answer Correct ?    16 Yes 2 No

which operator having highest precedence? a.)+ b.)++ c.)= d.)% ..

Answer / sivasiva

++

Is This Answer Correct ?    8 Yes 1 No

which operator having highest precedence? a.)+ b.)++ c.)= d.)% ..

Answer / margarate mary

%

Is This Answer Correct ?    3 Yes 1 No

which operator having highest precedence? a.)+ b.)++ c.)= d.)% ..

Answer / jalal

a)+

Is This Answer Correct ?    3 Yes 8 No

Post New Answer

More C Interview Questions

study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


What is the significance of scope resolution operator?

0 Answers   Agilent, ZS Associates,


proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?

7 Answers   Hughes,


How will you divide two numbers in a MACRO?

0 Answers   Apps Associates,


What are global variables?

0 Answers  


Explain how do you determine the length of a string value that was stored in a variable?

0 Answers  


. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.

1 Answers  


c program to add and delete an element from circular queue using array

3 Answers  


What is the difference between #include <header file> and #include “header file”?

0 Answers  


what are the difference between ANSI C and Let Us c and Turbo C

4 Answers   LG Soft,


what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }

3 Answers  


void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?

7 Answers  


Categories