how many errors in c explain deply
In which layer of the network datastructure format change is done
What is page thrashing?
How do I copy files?
How do you redirect a standard stream?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Is c weakly typed?
What's the best way to declare and define global variables?
What is the OOPs concept?
Explain what is the difference between functions abs() and fabs()?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.