main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 21417main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 13621#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 16260#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 182637import 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 4416Post New Ramco Interview Questions
What is mvc laravel?
how to calculate steam velocity on tg i/l ?
What is the operating voltage of laser?
How do I open the terminal in pycharm?
What is lambda function in python?
What is samplers and thread groups?
What is the purpose of the wait() method?
How will you resize the image in adobe photoshop?
What is dagger and explain dependency injection?
With N nodes and B branches what will have a network ???
What is the major difference between quenching and annealing?
What is current stable version of laravel?
What are the problems faced by the developer using object oriented programming language?
How to create an array in php?
Explain about python break, continue and pass?