Explain output of printf("Hello World"-'A'+'B'); ?
What is the ANSI C Standard?
What are types of functions?
What is the difference between fread and fwrite function?
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What are high level languages like C and FORTRAN also known as?
What is the heap in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
without using control structures and control structures find the max and min of given 2 nos
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
what is the difference between #include<> and #include”…”?
WHAT IS LOW LEVEL LANGUAGE?