What is scope and lifetime of a variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
What is the use of getchar functions?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
#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(); }
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
program to print circle structure
Difference between exit() and _exit() function?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
Difference between null pointer and dangling pointer?
What are the uses of null pointers?
Where can I get an ansi-compatible lint?