What does %d do in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to remove occurrences the word from entered text?
What is wild pointer in c with example?
Write a function that will take in a phone number and output all possible alphabetical combinations
what is compiler
What is structure packing ?
write a program to display the frequency of each element in a given array in c language
What is the difference between a free-standing and a hosted environment?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
Sir i need notes for structure,functions,pointers in c language can you help me please
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Explain the process of converting a Tree into a Binary Tree.
#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); }