How many keywords are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
What is the argument of a function in c?
What is action and transformation in spark?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is modifier & how many types of modifiers available in c?
I have seen function declarations that look like this
What is infinite loop?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is the difference between CV and Resume ?
write a program to sort the elements in a given array in c language
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }