How the C program can be compiled?
Answers were Sorted based on User's Feedback
The operation of a stair case switch best explains the a) or operation b) and operation c)exclusive nor operation d)exclusive or operation Which of the following is/are syntactically correct? a) for(); b) for(;); c) for(,); d) for(;;);
1 Answers HCL, Public Service Commission,
What is function pointer and where we will use it
write a program to insert an element at the specified position in the given array in c language
How to set file pointer to beginning c?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
What is the use of header files?
Write a program to reverse a linked list in c.
What is clrscr in c?
a simple c program using 'for' loop to display the output 5 4 3 2 1
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
What is the purpose of #pragma directives in C?