How do you print only part of a string?
No Answer is Posted For this Question
Be the First to Post Answer
How to set file pointer to beginning c?
What is file in c preprocessor?
How do you do dynamic memory allocation in C applications?
How do you write a program which produces its own source code as its output?
Why pointers are used?
c program to manipulate x=1!+2!+3!+...+n! using recursion
When should the const modifier be used?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
What is variable declaration and definition in c?
Is that possible to add pointers to each other?