Is fortran faster than c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I convert a number to a string?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What language is lisp written in?
What is the difference between c &c++?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
What are the three constants used in c?
Differentiate call by value and call by reference?
How are strings stored in c?
How can I read and write comma-delimited text?
When should the volatile modifier be used?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }