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

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

10 16008

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

9 15577

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

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

4 8189

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

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

19 54081

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

7 10795

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


1) One mason per day how many cu.m work will do as per list given a) Brick work,hollow brick work and cc block work and plastering how many m2 per day 2) one carpenter per day how many m2 will do as well as scaffolding how many m3

12 219198

import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }

3 5164

how to get the salary in descending order with out using the keyword desc in sql

5 8492

Post New Ramco Interview Questions




Un-Answered Questions

What is constructor in java ?

627


what is user base in sap security?

1140


how many steel rod of the cilling 10'x10'

2044


Can you define data provider?

468


What jobs alu of 8085 can perform?

813






Explain is there any way to read the ms excel datas directly into informatica? Like is there any possibilities to take excel file as target?

624


What are pipes and filters in unix?

607


How does sodium thiosulphate affect yeast?

1343


What are the streams in node.js?

244


< h2 > What is the difference between < div > and < frame > ?< /h2 >

446


What happens if we use leave to list-processing without using suppress-dialog?

685


Tell me what is needed to be able to use image function?

538


what is the control circuit for operating the clean room air shower

1726


Is it possible to assign user status to a sub-operation in maintenance order?

524


My source is delimited flat file Flat file data is H|Date D1|ravi|bangalore D2|raju|pune T|4 The data will be send to target if the fallowing two conditions satisfied 1.The first row Date column is equal to SYSDATE 2.Last record second port equal to number of records. How to achieve?

1443