What is c standard library?
No Answer is Posted For this Question
Be the First to Post Answer
What is break statement?
write a c program that prints all multiples of 3between 1 and 50.
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
What are the average number of comparisons required to sort 3 elements?
What is a protocol in c?
Tell me is null always defined as 0(zero)?
What type of function is main ()?
WHAT IS LOW LEVEL LANGUAGE?
explain what is an endless loop?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }