int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answers were Sorted based on User's Feedback
What is #define used for in c?
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
How to write a code for reverse of string without using string functions?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
wap to print "hello world" without using the main function.
Is using exit() the same as using return?
the operator for exponencation is a.** b.^ c.% d.not available
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is the use of bit field?
When should a far pointer be used?
Write a program to know whether the input number is an armstrong number.
const char * char * const What is the differnce between the above tow?.