main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 26953main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 19368#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 20175#include
#include
#include
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 233063import 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 6683Post New Ramco Interview Questions
What is meant by load commutation?
What is a namenode? How many instances of namenode run on a hadoop cluster?
Tell us what is python? What are the benefits of using python? What do you understand of pep 8?
What is cell immunofluorescence ?
mention hazard experienced during installation
What are the only two planets to rotate from east to west?
What is predatism?
Which interface needs to be implemented to create Mapper and Reducer for the Hadoop?
explain the difference between oracle- sql and sql server sql ? if both are same y we r using 2 sw.s?
Explain how do concrete pumps work?
What should be the aim of successful marketing?
How to process query result in pl/sql?
What is UDF in Pig?
What is mean by the error LVALUE REQUIRED in C language
Calculate a real number calculation directly from the terminal and not any shell script.