while loop contains parts
a) initialisation, evalution of an expression,increment /decrement
b) initialisation, increment/decrement
c) condition evalution
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
write a program to find out number of on bits in a number?
Difference between null pointer and dangling pointer?
number of times a digit is present in a number
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is extern c used for?
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.
2 Answers Drona Solutions, Infosys, Vodafone, Webyog,
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
What is double pointer?