Write a c program without using any semicolon which output will : Atmiya MCA.
Solution: 1
void main(){
if(printf("Atmiya MCA")){
}
}
Solution: 2
void main(){
while(!printf("Atmiya MCA")){
}
}
Solution: 3
void main(){
switch(printf("Atmiya MCA")){
}
}
0 comments:
Post a Comment