What is graph in c?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
What are the basic data types associated with c?
Why main is used in c?
what are the advantages & disadvantages of unions?
What is data structure in c and its types?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
. Write a program to get a string and to convert the 1st letter of it to uppercase
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
What is "Hungarian Notation"?
write a c program to print "Welcome" without using semicolon in the whole program ??
what is C?