plz let me know how to become a telecom protocol tester.
thank you.
No Answer is Posted For this Question
Be the First to Post Answer
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
who is first prime minister in india??
code for bubble sort?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
Explain do array subscripts always start with zero?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
Can a pointer point to null?