What is a example of a variable?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
What is #include stdlib h?
write a c programme for add of two numbers with out use of arthematic operators
Why array starts with index 0
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ā¦ā¦..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
provide an example of the Group by clause, when would you use this clause
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is structure in c definition?
What are run-time errors?