What is #include conio h?
No Answer is Posted For this Question
Be the First to Post Answer
How to add two numbers without using semicolon n c????
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
what will be maximum number of comparisons when number of elements are given?
in malloc and calloc which one is fast and why?
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);
How many header files are in c?
Can you write a programmer for FACTORIAL using recursion?
how to execute with out main in cprogram
what is difference between ANSI structure and C99 Structure?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
can we print any string in c language without using semicolon(;)(terminator) in whole program.