how many header file is in C language ?
Answers were Sorted based on User's Feedback
what is const volatile?
Is python a c language?
What is the difference between fork() and vfork()?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
What is that continue statement??
What are disadvantages of C language.
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
Write a program that an operator and two operands read from input operand operator on the implementation and results display.
What does the error 'Null Pointer Assignment' mean and what causes this error?
the operator for exponencation is a.** b.^ c.% d.not available
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none