What is the description for syntax errors?


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

Post New Answer

More C Interview Questions

Why can't we initialise member variable of a strucutre

1 Answers  


Explain #pragma statements.

0 Answers  


hi any body pls give me company name interview conduct "c" language only

0 Answers  


#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?

7 Answers   Intel,


simple c program for 12345 convert 54321 with out using string

7 Answers   TCS,






main() { char *p; p="Hello"; printf("%c\n",*&*p); }

2 Answers   ME,


Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.

0 Answers  


Here is a neat trick for checking whether two strings are equal

0 Answers  


#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?

3 Answers   Huawei,


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

0 Answers  


What is the difference between NULL and NUL?

0 Answers   Aspire, Infogain,


can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?

2 Answers  


Categories