What is p in text message?
No Answer is Posted For this Question
Be the First to Post Answer
What are .h files and what should I put in them?
how to do in place reversal of a linked list(singly or doubly)?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What are the two types of structure?
What is static and auto variables in c?
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
What is the difference between break and continue?
Why should I use standard library functions instead of writing my own?
Explain the difference between malloc() and calloc() in c?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
What are the preprocessors?