What is pointer to pointer in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
What is c programing language?
What is a floating point in c?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
write a program to display & create a rational number
Write a program for finding factorial of a number.
What are the different types of pointers?
Who is invented by c?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
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 would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }