How do you write a program which produces its own source code as output?
No Answer is Posted For this Question
Be the First to Post Answer
Is c object oriented?
What is null character in c?
what defference between c and c++ ?
write a program in c to print **** * * * * ****
c program to manipulate x=1!+2!+3!+...+n! using recursion
Explain a file operation in C with an example.
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
HOW CAN ADD OUR FUNCTION IN LIBRARY.
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
what is disadvantage of pointer in C
Write a program in c to replace any vowel in a string with z?