C program execution always begins with
a) #include
b) comment (/*-------*/)
c) main()
d) declaration instructions
Total of how many functions are available in c?
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
how to find anagram without using string functions using only loops in c programming
How to add two numbers without using semicolon at runtime
What do you mean by dynamic memory allocation in c? What functions are used?
With the help of using classes, write a program to add two numbers.
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
Is reference used in C?
What will be your course of action for a push operation?
how to swap 4 number without using temporary number?