what type of questions arrive in interview over c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between array and structure in c?
Where is c used?
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
What is the difference between a function and a method in c?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
Should a function contain a return statement if it does not return a value?
1. main() { printf("%d",printf("HelloSoft")); } Output?
Write a program to print "hello world" without using a semicolon?
Write a program in c to print 1 121 12321 1234321 123454321
11 Answers ANR, College School Exams Tests, Mu Sigma, Wipro,
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
How can I open a file so that other programs can update it at the same time?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38