What is wrong in this statement?


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

Post New Answer

More C Interview Questions

What is realloc in c?

0 Answers  


#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;

5 Answers   Accenture, TCS,


how to find the kth smallest element in the given list of array elemnts.

8 Answers   Silicon,


Difference between MAC vs. IP Addressing

0 Answers  






Why is c so popular?

0 Answers  


How can I find out how much free space is available on disk?

0 Answers  


Why are algorithms important in c program?

0 Answers  


Do array subscripts always start with zero?

0 Answers  


write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3

0 Answers   ADP,


What are logical errors and how does it differ from syntax errors?

0 Answers  


What is sizeof array in c?

0 Answers  


Categories