C Interview Questions
Questions Answers Views Company eMail

Write a C program to perform some of the operation which can be performed using Single linked list

Qualcomm,

1 7458

How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.

1 3031

what is an array

5 5540

progrem to generate the following series 1 12 123 1234 12345

HCL, Wipro,

6 41987

what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }

HCL,

3 9391

who is the father of C Language?

CTS, UST,

20 27926

a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'

2 4162

what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 6020

what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 2961

int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }

3 7009

Hi can anyone tell what is a start up code?

CTS,

1621

Can anyone tell what is stack overflow? what precaution we should take?

1 2873

what are the advantages & disadvantages of unions?

2 37396

which one is better structure or union?(other than the space occupied )

2 10291

can anyone please tell about the nested interrupts?

1680


Post New C Questions

Un-Answered Questions { C }

What are integer variable, floating-point variable and character variable?

611


Explain logical errors? Compare with syntax errors.

633


Is it valid to address one element beyond the end of an array?

677


How we can insert comments in a c program?

636


how do you execute a c program in unix.

641






When should the const modifier be used?

661


What is the use of in c?

583


What was noalias and what ever happened to it?

595


what is the syallabus of computer science students in group- 1?

1846


How to Throw some light on the splay trees?

623


Is register a keyword in c?

641


When should you not use a type cast?

662


List out few of the applications that make use of Multilinked Structures?

1311


number of times a digit is present in a number

1545


Find MAXIMUM of three distinct integers using a single C statement

629