How to use c/c++ code in JAVA

Answer Posted / devendra

NO IDE USE IN C++ PLSE HELP ME

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between strcpy() and memcpy() function in c programming?

633


What is c++ used for today?

683


Explain pointer. What are function pointers in C?

635


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

22288


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

676






What is the purpose of & in scanf?

609


Write a program to swap two numbers without using the third variable?

608


What is the difference between #include and #include 'file' ?

615


I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.

1914


What are variables c?

634


What are identifiers and keywords in c?

584


What is the purpose of type declarations?

686


‎How to define structures? · ‎

645


Is c easier than java?

587


Explain can static variables be declared in a header file?

693