Output of the program:
#include int main() { int size; printf(\"Enter the size of array: \"); scanf(\"%d\",&size); i
you could use a for cycle instead of a while so instead of while(i++you could use for(i = 0; i < size; i++) that should solve your problem my friend :)
while(i++you could use for(i = 0; i < size; i++) that should solve your problem my friend :)
for(i = 0; i < size; i++)