How can I call fortran?
No Answer is Posted For this Question
Be the First to Post Answer
What are the keywords in c?
how many key words availabel in c a) 28 b) 31 c) 32
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
Write a program to find whether the given number is prime or not?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
swapping of two numbers without using third variable using AND and OR operators
what is constant pointer?
Do you know the difference between exit() and _exit() function in c?
What are two dimensional arrays alternatively called as?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
What do you mean by team??
Why do we need a structure?