main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 26921main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 19347#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 20160#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 233023import 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 6660Post New Ramco Interview Questions
Define nuclear pollution?
What is meant by distributed system?
What is cdata in xml?
What is the difference between plan and package in db2?
If you were in a foul mood on a day at work, what would you do to not let it affect your productivity?
Mention the data structures which are used in graph implementation.
What are the limitations of node.js?
Can multiple columns be used in group by in oracle?
What is the maximum number of swithes that can be connected in series up to down stream point in an LV Distribution system?
Why css is faster than xpath?
Can you inspect element on iphone?
Can apache run on windows?
Describe the transwell migration assay?
what are the 3 test tool categories and describe what each can do.
What is hashmap in c#?