What is the difference between printf and scanf in c?
No Answer is Posted For this Question
Be the First to Post Answer
Which command is more efficient? *(ptr+1) or ptr[1]
Explain can you assign a different address to an array tag?
Why is c so powerful?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
main() { int a = 65; printf(ā%d %o %xā,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
What is the difference between NULL and NUL?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
What is c value paradox explain?
What is the difference between array and pointer?
What is exit() function?