What is return in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Give a method to count the number of ones in a 32 bit number?
What are the functions to open and close file in c language?
What is break in c?
What is the data segment that is followed by c?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
What is the collection of communication lines and routers called?
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
Write a program to exchange two variaables without temp
What is the use of pragma in embedded c?