what is difference between ANSI structure and C99 Structure?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
What are the three constants used in c?
Explain the difference between malloc() and calloc() function?
Explain what are global variables and explain how do you declare them?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain how to reverse singly link list.
Write a program that can show the multiplication table.
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is memmove?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What is the Purpose of 'extern' keyword in a function declaration?
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);