Smallest c program ever

main(){;}

Explanation: - main() is the entry point of the program in C. - {} denotes a code block. - ; is a statement terminator. - ; inside the curly braces indicates an empty statement. - Therefore, this is the smallest valid C program that does nothing.