#include<stdio.h>
{
printf("Hello");
}
how compile time affects when we add additional header file
<conio.h>.
No Answer is Posted For this Question
Be the First to Post Answer
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
How is = symbol different from == symbol in c programming?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
what is real time system?what is the differance between hard and soft real time systems
Can we access the array using a pointer in c language?
What is the scope of static variables in c language?
Explain the advantages of using macro in c language?
Can you think of a logic behind the game minesweeper.
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
Why doesnt this code work?
write a program to print largest number of each row of a 2D array
How many ways are there to swap two numbers without using temporary variable? Give the each logic.