⟩ What is the output of this program? #! /usr/bin/awk -f BEGIN { a=6 do { print "google" a++ } while (a<5) } a) nothing will print b) "google" will print 5 times c) "google" will print 4 times d) "google" will print only 1 time
d) "google" will print only 1 time
Explanation:
Even the condition is false of do-while loop, the body is executed once.
Output:
root@ubuntu:/home/google# ./test.awk
root@ubuntu:/home/google#