Who invented bcpl language?
No Answer is Posted For this Question
Be the First to Post Answer
WAP to find that given no is small or capital
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What is the scope of static variable in c?
What is the difference between #include and #include 'file' ?
player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion
What is dynamic memory allocation?
formula to convert 2500mmh2o into m3/hr
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
What is assert and when would I use it?
How is a structure member accessed?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.