Is there a way to compare two structure variables?
No Answer is Posted For this Question
Be the First to Post Answer
What is string function c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
Write a program to generate random numbers in c?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
Why do we use pointer to pointer in c?
Describe explain how arrays can be passed to a user defined function
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Define and explain about ! Operator?
what is the flow of execution in cprogram? ex:printf();,scanf();
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
define string ?