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 24924

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

10 16811

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

9 16267

#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 18777

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

4 8653

#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 14851

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

19 56277

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

7 11417

#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 9603


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

6 8671

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 5381

Post New Ramco C Interview Questions




Un-Answered Questions

Explain the difference between and exec cics xctl and an exec cics link command?

645


What is aura? Why do we use the aura: namespace in the code?

269


Please explain what is mvc and why do we use it?

1


Regarding vat return,I have 3 units can i return at a time for 3 units vat return only one vat form. Kindly suggetion the same how to do.

2653


Where can I learn excel for free?

362






Can you edit an apex trigger/ apex class in production environment? Can you edit a visual force page in production environment? : salesforce crm

268


In which language codeigniter is written?

398


Explain about busy waiting?

624


Explain any scenario occurred you to work beyond governor limits?

737


How do you choose a design pattern?

669


What is rdd in python?

518


What is sequences in postgresql?

514


Can you move your program files to another drive?

628


In people soft can we delete online page?

556


What is test environment?

730