about c language
No Answer is Posted For this Question
Be the First to Post Answer
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
write a program to find the frequency of a number
Why c is procedure oriented?
What is n in c?
Do string constants represent numerical values?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
how can we print hellow world programme without using semicolon
What is the difference between malloc calloc and realloc in c?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
Where is c used?