Which type of language is c?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Which is best linux os?
What is array in C
What is the difference between null pointer and the void pointer?
What are the types of assignment statements?
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What are the loops in c?
Do variables need to be initialized?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
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?