in

Damn those questions

Damn those questions | program-memes, cs-memes, cse-memes | ProgrammerHumor.io
program-memes, cs-memes, cse-memes | ProgrammerHumor.io

Content

Question CSE 102 69. Write a programme to print the pattern. 1 4 6 9 11 13 17 19 21 23 My Answer include stdio.h int main() printf("1n"); printf("4 6n"); printf("9 11 13n); printf("17 19 21 23n"); return 0; Me Teacher