What is wrong with this program statement? void = 10;


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

Post New Answer

More C Interview Questions

By using C language input a date into it and if it is right?

0 Answers   Aricent,


Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

4 Answers   OpenFeel,


How can I read a binary data file properly?

0 Answers  


what is diognisis?

1 Answers  


What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?

1 Answers  


Write a program to print fibonacci series using recursion?

0 Answers  


What does s c mean in text?

0 Answers  


swapping of two numbers without using third variable using AND and OR operators

2 Answers  


#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}

3 Answers  


main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }

2 Answers   Vector, Vector India,


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

0 Answers  


What is meant by operator precedence?

0 Answers  


Categories