write a program to display all prime numbers
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between class and structure?
How many parameters should a function have?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
What is && in c programming?
What does == mean in texting?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
how c source file in converted to exe file
Explain how do you list files in a directory?
What is scope and lifetime of a variable in c?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
what is meant by the "equivalence of pointers and arrays" in C?