How is = symbol different from == symbol in c programming?


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

Post New Answer

More C Interview Questions

If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?

6 Answers   Hughes,


Under what circumstances does a name clash occur?

0 Answers   InterGraph,


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,


C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


How can you convert integers to binary or hexadecimal?

0 Answers  






shorting algorithmS

0 Answers   Wipro,


Is c still used?

0 Answers  


When do we get logical errors?

0 Answers  


Program to find the absolute value of given integer using Conditional Operators

6 Answers   N Tech,


What is getch c?

0 Answers  


How many data structures are there in c?

0 Answers  


write a program to find the frequency of a number

4 Answers   Infosys,


Categories