How can I dynamically allocate arrays?
No Answer is Posted For this Question
Be the First to Post Answer
How does normalization of huge pointer works?
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
how to write a data 10 in address location 0x2000
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Is boolean a datatype in c?
Define macros.
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
What is getch() function?
what is the difference between c and c++?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
How the c program is executed?
What is volatile in c language?