What is indirection? How many levels of pointers can you have?
No Answer is Posted For this Question
Be the First to Post Answer
Ow can I insert or delete a line (or record) in the middle of a file?
1. Write a program to reverse every second word in a given sentence.
Explain what is the use of a semicolon (;) at the end of every program statement?
Can you write a programmer for FACTORIAL using recursion?
What does c mean before a date?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
List some applications of c programming language?
Explain what is dynamic data structure?
program to locate string with in a string with using strstr function
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
Why dont c comments nest?