#include <stdio.h> void main() { int m = 12; float m = 12; printf("%d", m) }
Since the variable m is defined both as integer and as float, it results in an error.
Previous Question Next Question
Your comments will be displayed only after manual approval.