C Programming and Technical Programming Program

#include
main(){
int a;
a=1,2;
printf("%d",a);
}
Options
1) 1
2) 2
3) Syntax error
4) none

Read Solution (Total 22)

C Other Question

#include
main(){
int x=10,y=10,z=5,i;
i=x
Write a program to eliminate repeated word in a string without using built in function.
For ex: hi how are you. hope you are fine.
o/p: hi how are you. hope fine.