C Interview Questions
Questions Answers Views Company eMail

WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

1582

#include #include int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 4043

what is void pointer?

Wipro,

1 3647

1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3130

void main() { int a=1; while(a++<=1) while(a++<=2); }

HCL,

4 7290

The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

1 2916

being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?

TCS,

1 3679

write a program for egyptian fractions in c?

Satyam,

1 6730

How to write the code of the program to swap two numbers with in one statement?

2 5080

write a program to display & create a rational number

HCL, TCS,

1 3658

who developed c and why he developed c?

5 10874

WHO WROTE C LANGUAGE?

4 7212

WHAT IS C?

6 5127

WHAT IS LOW LEVEL LANGUAGE?

2 3157

WHAT IS HIGH LEVEL LANGUAGE?

2 3612


Post New C Questions

Un-Answered Questions { C }

Differentiate call by value and call by reference?

556


What is assert and when would I use it?

568


What is difference between union and structure in c?

566


How can you tell whether two strings are the same?

817


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

656






How do I send escape sequences to control a terminal or other device?

600


Is c language still used?

528


hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..

1451


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

1164


List the difference between a "copy constructor" and a "assignment operator"?

572


Can a pointer be static?

607


Why c is a procedural language?

569


write a program to create a sparse matrix using dynamic memory allocation.

4363


difference between Low, Middle, High Level languages in c ?

1619


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

601