Why cant I open a file by its explicit path?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to find out number of on bits in a number?
write a program in c language to print your bio-data on the screen by using functions.
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Stimulate calculator using Switch-case-default statement for two numbers
What are linked lists in c?
How Many Header Files in c?
explain what is an endless loop?
How can I find leaf node with smallest level in a binary tree?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
Famous puzzles which are generally asked by companies during interviews ?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }