Write a program to check prime number in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Should a function contain a return statement if it does not return a value?
what will be the output for the following main() { printf("hi" "hello"); }
who did come first hen or agg
Write a program in c to replace any vowel in a string with z?
What are global variables and how do you declare them?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
how to add numbers without using arithmetic operators.
What are the types of bitwise operator?
How can I change the size of the dynamically allocated array?
What is string in c language?