what is the different bitween abap and abap-hr?
No Answer is Posted For this Question
Be the First to Post Answer
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
can we declare a function in side the structure?
Explain what is the heap?
Why string is used in c?
read an array and search an element
How does #define work?
What is the difference between int main and void main in c?
What are identifiers and keywords in c?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?