Write a program that can show the multiplication table.
Write a progarm to find the length of string using switch case?
What are identifiers in c?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
How main function is called in c?
can we declare a function in side the structure?
What is the description for syntax errors?
How many types of sorting are there in c?
what are the uses of structure?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
write an algorithm and a program to count the number of elements in a circularly singly linked list
i want to know the procedure of qualcomm for getting a job through offcampus
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }