answersLogoWhite

0

swap(&grades[num],&grades[num+1]);

what it make in a program?

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is disadvantage of c-language?

It sucks, C++ is the way to go or even C#


Who created 'C Plus Plus ' language and when?

C ++ is a computer progamming language just like Java, Python and Perl or even its predecessor 'C'.


What represents valid integer number in c language?

1500


What number is equivalent to -4e3 in c language?

In C, it is -4000.0 In others languages, it is -4000.0


is 986 even or odd?

Even b/c if the last number is even then even and if the last number is odd then the number is odd so 986 _6_ is even


Is 'a' equals ''a'' in c language?

No, the first is a number (0x91), the second is a pointer.


Write a algorithm to print even number in C programming language?

#include<stdio.h> #include<conio.h> void main() { int n; clrscr(); printf("\n enter the number:"); scanf("%d",&n); if(n%2==0) printf("\n the number is even"); getch(); }


Why c language has name c why not a?

C-language was derived from B-language.


Floating point number in c-language?

any real number e.g, 15.5 1456.223 4568.12


Write a programme for substraction of two numbers in c language?

substracion of any two number program in c


Which language do programmers use if the problem requires a lot of number crunching?

C++


What is disadvantage oe high level language?

In low level langauges like Assembly, you are working with the lowest possible chunks of code you can, machine code. The higher the level of a language, the more abstractions you use to organize ideas, and therefore, the less efficient it can become. For example, a regular integer in C or C++ on a 32bit system is simply 4 bytes. It can only represent a certain range of numbers, however. In the even higher level language of python, a number is an arbitrary number of bytes and can be as big as it needs to be, but a number in python is slightly bigger than the same number in C or C++ because it's structured differently.