What is the data segment that is followed by c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
Can the curly brackets { } be used to enclose a single line of code?
What is spaghetti programming?
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What does s c mean in text?
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
What is Bitwise Operator and how it works?
without a terminator how can we print a message in a printf () function.
#define f(x) main() { printf("\n%d",f(2+2)); }
What is the use of ?: Operator?