Why c language is called c?
No Answer is Posted For this Question
Be the First to Post Answer
Is there a way to switch on strings?
What is an identifier?
What is a null pointer in c?
what is the format specifier for printing a pointer value?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
How do we print only part of a string in c?
Why we use conio h in c?
What is wrong with this initialization?
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?
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What is meant by initialization and how we initialize a variable?