What does #pragma once mean?
No Answer is Posted For this Question
Be the First to Post Answer
write a program for size of a data type without using sizeof() operator?
22 Answers HCL, IBM,
question-how to run a c programme.
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
How can we allocate array or structure bigger than 64kb?
what are enumerations in C
what is meant by flushll() in c programming?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
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); }
Write a program to find minimum between three no.s whithout using comparison operator.
Why is #define used?
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type