a formula,a series of steps,or well defined set of rules for solving a problem
a) algorithem
b) program
c) erdiagram
d) compiler
No Answer is Posted For this Question
Be the First to Post Answer
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
How many main () function we can have in a project?
Is c programming hard?
why we wont use '&' sing in aceesing the string using scanf
Explain what math functions are available for integers? For floating point?
What is structure of c program?
What is far pointer in c?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,