Do you know pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
second highest number in a given set of numbers
What is a program?
write a programming in c to find the sum of all elements in an array through function.
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is sizeof return in c?
What is volatile variable in c?
Please list all the unary and binary operators in C.
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
What are the 3 types of structures?
how to find the largest element of array without using relational operater?