#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
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
Write a program to find given number is even or odd without using any control statement.
program for reversing a selected line word by word when multiple lines are given without using strrev
What functions are used in dynamic memory allocation in c?
What is the difference between arrays and pointers?
what is the output of printf("%d",(scanf("%d",10));
What is the significance of an algorithm to C programming?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
consagous technology placement paper
What is selection sort in c?
void main() { int i=5; printf("%d",i++ + ++i); }