Answer Posted / manikanta
#include "stdio.h"
main()
{
printf(" %%d ");
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Are the variables argc and argv are local to main?
What is the Purpose of 'extern' keyword in a function declaration?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
what will be maximum number of comparisons when number of elements are given?
How does free() know explain how much memory to release?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Describe the modifier in c?
What is new line escape sequence?
Explain how do you convert strings to numbers in c?
What is wrong with this code?
Difference between constant pointer and pointer to a constant.
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is echo in c programming?