What is wrong with this code?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is typedef example?

0 Answers  


write a program to delete an item from a particular location of an linear array?

1 Answers  


why we shiuld use main keyword in C

5 Answers  


4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above

6 Answers   Accenture,


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

1 Answers   Accenture,


How many types of sorting are there in c?

0 Answers  


What is a keyword?

0 Answers  


Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

5 Answers   Accenture,


I have seen function declarations that look like this

0 Answers  


write an interactive program to generate the divisors of a given integer.

7 Answers   TCS,


What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }

4 Answers   CTS, Oracle,


A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.

0 Answers  


Categories