What is a program flowchart and explain how does it help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
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
Describe static function with its usage?
What is wrong with this declaration?
What are actual arguments?
Can the size of an array be declared at runtime?
Write a program to check palindrome number in c programming?
What library is sizeof in c?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
What is pointer in c?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Is null equal to 0 in sql?
What is a header file?