how do you execute a c program in unix.
No Answer is Posted For this Question
Be the First to Post Answer
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
How are variables declared in c?
Why is not a pointer null after calling free?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
Function to find the given number is a power of 2 or not?
What is exit() function?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
What is meant by gets in c?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
how to generate sparse matrix in c