Can we declare variable anywhere in c?
No Answer is Posted For this Question
Be the First to Post Answer
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
What does %c mean in c?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
What is pointer to pointer in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Write a simple program to find the size of different basic data types in C.