What is null pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
What does sizeof function do?
What does the format %10.2 mean when included in a printf statement?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
Explain the red-black trees?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Explain what is the advantage of a random access file?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
What is the purpose of main() function?
write a own function to compare two strings with out using stringcomparition function?
how to find the kth smallest element in the given list of array elemnts.
What are the usage of pointer in c?