What kind of structure is a house?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of void pointer?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
How to write a multi-statement macro?
How do you search data in a data file using random access method?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
what does " calloc" do?
program to print circle structure
Can we increase size of array in c?
Write a Program to find whether the given number or string is palindrome.
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
What does != Mean in c?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.