Showing posts with label c quiz. Show all posts
Showing posts with label c quiz. Show all posts

C interview questions and answers -1-

1. Write a c program without using any semicolon which output will : Hello word.

Answer:
Solution: 1
void main(){
    if(printf("Hello world")){
    }
}