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

Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

Ramco C Interview Questions
Questions Answers Views Company eMail

main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?

7 26942

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?

10 19356

main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?

9 18263

#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 20173

#include main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 10052

#include main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?

6 16421

main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??

19 61452

main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?

7 13262

#include int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i 5 11105


const char * char * const What is the differnce between the above tow?.

6 10708

actually i have 2 years teaching experience as computer faculty but now i am a DBA but when i go for interview many peoples asked me why i left my teaching profession and why i want to come in this field kindly give me the proper answer of this queston

3 6302

Post New Ramco C Interview Questions




Un-Answered Questions

You are a project manager and are in the Closing process of the project. Your customer has been presented with a formal acceptance and sign-off document. They refuse to sign, claiming the product does not meet their expectations. You know that this situation could have been prevented by doing all of the following except : A. Documenting the requirements B. Documenting the customer's refusal to sign C. Performing quality inspections during the process D. Requesting sign-off at important milestones

992


What is mrc and what is its use? : oracle accounts receivable

1223


Does jcl support automatic restart?

1243


What is the l/d ratio of cantilever beam?

2008


Can you name the differences between object-oriented and component-based design?

881


what are the major key responsibility areas for a manager in bpo...?

2889


What are the various fancy weaves and describe any two?

5


What is data stream and data adapter is it same are different? Explain?

976


What jobs frequently use excel?

661


how many times pcc can run for one material?

2616


What is the purpose of IClonable interface in .NET?

1055


Explain how to write custom sql query in magento?

3


Which is better mvvm or mvc?

1


How can an application do a jms operation and have it succeed, independent of the result of the transaction?

792


State the differences between the dispose() and finalize().

1046