#include<stdio.h>
int main()
{ int i=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}
Answers were Sorted based on User's Feedback
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
Explain about the constants which help in debugging?
code for quick sort?
who developed c and why he developed c?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
How is = symbol different from == symbol in c programming?
without using arithmatic operator solve which number is greater??????????
What is the difference between scanf and fscanf?
What does extern mean in a function declaration?
What is meant by errors and debugging?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Explain the use of 'auto' keyword