In which layer of the network datastructure format change is done
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by scope of a variable in c?
What is the heap in c?
Explain how do you search data in a data file using random access method?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
How can you convert integers to binary or hexadecimal?
Is fortran still used in 2018?
void main() { int a=1; while(a++<=1) while(a++<=2); }
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }
Explain the binary height balanced tree?
wap to print "hello world" without using the main function.
Why is extern used in c?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.