define string ?
No Answer is Posted For this Question
Be the First to Post Answer
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
How to create struct variables?
What is multidimensional arrays
What is meant by recursion?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
How are 16- and 32-bit numbers stored?
What is the difference between a structure and a union?
how can i print "hello"
Program to trim a given character from a string.
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }