What is c preprocessor mean?
No Answer is Posted For this Question
Be the First to Post Answer
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
What is difference between Structure and Unions?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
Explain what is a pragma?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Explain how can I open a file so that other programs can update it at the same time?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
character array A[12] can hold
Write a program to find factorial of a number using recursive function.
How is pointer initialized in c?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
write a c program to calculate sum of digits till it reduces to a single digit using recursion