What is the usage of the pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
#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(); }
Explain the concept of "dangling pointers" in C.
What are the differences between new and malloc in C?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
What is sizeof int?
print 1-50 with two loop & two print Statement
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
How many header files are in c?
write a program to remove occurrences the word from entered text?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
define switch statement?